<?xml version='1.0' encoding='utf-8'?>
<rss version='2.0'>
   <channel>
      <title>New Posts at Dream.In.Code</title>
      <link>http://www.dreamincode.net/forums</link>
      <description>Web Development, Programming, and Coding Community. Browse forums, snippets, and tutorials to get you on the right track. Experts in C++, PHP, VisualBasic, HTML, JavaScript, ColdFusion, and more!</description>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63033.htm</link>
            <title>A few questions in JavaScript</title>
            <description>Hey guys I have a few questions which I guess you could consider very basic, but I&amp;#39;ve been searching for half an hour and don&amp;#39;t seem to be getting anywhere.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m trying to teach myself some Javascript, mostly using a book I&amp;#39;ve bought. It has a bunch of exercises after each chapter, but no answers so the ones I don&amp;#39;t get have me totally stumped.&lt;br /&gt;&lt;br /&gt;First thing I&amp;#39;m having trouble with is wanting to create a link that when you click it, some XHTML is loaded.&lt;br /&gt;The link I have is:&lt;br /&gt;[code=html]&amp;lt;a href=&amp;quot;#&amp;quot; onclick=&amp;quot;displayRegistrationForm()&amp;quot;&amp;gt;Click here for registration&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;[/code]&lt;br /&gt;but I&amp;#39;m not sure what to use as the Javascript. I&amp;#39;m wanting to display a bunch of text fields/buttons so the pretend user can register. My book has:&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;function displayRegistrationForm&amp;#40;&amp;#41;&lt;br /&gt;{&lt;br /&gt;var strHTML = &amp;#34;Registration Form&amp;#34;;&lt;br /&gt;document.getElementById&amp;#40;&amp;#39;content&amp;#39;&amp;#41;.innerHTML = strHTML;&lt;br /&gt;}&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;But I can&amp;#39;t make any sense of this.&lt;br /&gt;&lt;br /&gt;Could someone please help me out?&lt;br /&gt;Thanksssss&amp;#33; &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/ph34r.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:ph34r:&quot; border=&quot;0&quot; alt=&quot;ph34r.gif&quot; /&gt;  &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/crazy.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:crazy:&quot; border=&quot;0&quot; alt=&quot;crazy.gif&quot; /&gt;</description>
			<category>JavaScript</category>
			<pubDate>Mon, 08 Sep 2008 00:30:59 -0600</pubDate>
			<author>skin_</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63032.htm</link>
            <title>if you were not a programmer, what would like to be? in Perl and Python</title>
            <description>if you were not a programmer, what would like to be?....&lt;br /&gt;&lt;br /&gt; &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:D&quot; border=&quot;0&quot; alt=&quot;biggrin.gif&quot; /&gt;  &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:D&quot; border=&quot;0&quot; alt=&quot;biggrin.gif&quot; /&gt;  &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:D&quot; border=&quot;0&quot; alt=&quot;biggrin.gif&quot; /&gt;</description>
			<category>Perl and Python</category>
			<pubDate>Mon, 08 Sep 2008 00:26:40 -0600</pubDate>
			<author>mauzinisterice</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63013.htm</link>
            <title>Adding Binary Numbers in Java</title>
            <description>A little magic when summing binary numbers is that you can reach your result using only logical operators &amp;#39;AND&amp;#39;, &amp;#39;OR&amp;#39; and &amp;#39;XOR&amp;#39;.&lt;br /&gt;&lt;br /&gt;- - - 0   Carry&lt;br /&gt;0110  Op1&lt;br /&gt;0101  Op2&lt;br /&gt;====&lt;br /&gt;1011  Op3&lt;br /&gt;&lt;br /&gt;If you start with the last digits of each operand (+carry) and XOR the (3) bitvalues, you get the last digit of operand3.&lt;br /&gt;Then let the carrybits be represented like Carry[3] Carry[2] Carry[1] Carry[0] where Carry[0] = 0 (always)&lt;br /&gt;you calculate the next carry bit:&lt;br /&gt;&lt;br /&gt;Carry[i] = (Carry[i-1] &amp;amp; Op1[i-1]) | (Carry[i-1] &amp;amp; Op2[i-1]) | (Op1[i-1] &amp;amp; Op2[i-1]) &lt;br /&gt;i = 1..3&lt;br /&gt;&lt;br /&gt;then loop through the bits.&lt;br /&gt;&lt;br /&gt;This probably won&amp;#39;t help you much since your input is String and you&amp;#39;d have to make alot of changes that wouldn&amp;#39;t be worth it. Anyways, it&amp;#39;s good knowledge.</description>
			<category>Java</category>
			<pubDate>Mon, 08 Sep 2008 00:21:39 -0600</pubDate>
			<author>Gloin</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62677.htm</link>
            <title>How Do I Skin VB.NET Apps? in VB.NET</title>
            <description>&lt;!--quoteo(post=412458:date=3 Sep, 2008 &amp;#045; 10&amp;#58;09 PM:name=Zigo AlCapone)--&gt;&lt;div class='quotetop'&gt;QUOTE(Zigo AlCapone &amp;#064; 3 Sep, 2008 &amp;#045; 10&amp;#58;09 PM) [snapback]412458[/snapback]&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--quotec--&gt;&lt;br /&gt;You can skin it with irishSkin for .Net.&lt;br /&gt;I have the link if u really want it&lt;br /&gt;it&amp;#39;s easy to use n simple, also u can download the skin on their web site.&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;hi zigo &lt;br /&gt; i really want the link &lt;br /&gt;can you send it to me plz  &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>VB.NET</category>
			<pubDate>Mon, 08 Sep 2008 00:16:03 -0600</pubDate>
			<author>tarkish</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63031.htm</link>
            <title>One Button Create Multiple Rooms. How? in Databases</title>
            <description>I am using SQL SERVER 2005 as my database. I use web services to pass data and get data. I have a problem like how do i create multiple rooms with just one button? i have an idea:&lt;br /&gt;&lt;br /&gt;like &lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;if&amp;#40;Room1 Exist&amp;#41;&lt;br /&gt;{&lt;br /&gt;Create TABLE Room2..etc&lt;br /&gt;}&lt;br /&gt;else if &amp;#40;Room1 Exist AND ROOM2 Exist&amp;#41;&lt;br /&gt;{&lt;br /&gt;CREATE TABLE Room3..etc&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;Any help is appreciated. thx. I am using Flash As3.&lt;br /&gt;&lt;br /&gt;** Edit ** &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/code.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:code:&quot; border=&quot;0&quot; alt=&quot;code.gif&quot; /&gt;</description>
			<category>Databases</category>
			<pubDate>Mon, 08 Sep 2008 00:10:18 -0600</pubDate>
			<author>Dialion</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63029.htm</link>
            <title>Talking about Network in Networking &amp; Wireless</title>
            <description>I just start learning descover about network. but I&amp;#39;m bad on that skill, I wish to be administrator.&lt;br /&gt;&lt;br /&gt;Do you have idea about this problem? do you know books that talking about network or anything to become administrator? and which are skills I should good to know to become an administrator?&lt;br /&gt;&lt;br /&gt;I heard my friends that want to become administrator I should to be a technician of network, I should to know clearly on network and all the peripharals of networks then I will understand about how to control system to be administrator. but I don&amp;#39;t know which ebooks I should to download? please help me.&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/biggrin.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:D&quot; border=&quot;0&quot; alt=&quot;biggrin.gif&quot; /&gt;</description>
			<category>Networking &amp; Wireless</category>
			<pubDate>Mon, 08 Sep 2008 00:04:01 -0600</pubDate>
			<author>ratanak1010</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63028.htm</link>
            <title>Chrome Compatability in Site Feedback</title>
            <description>I had mentioned in a different post about this error, but I&amp;#39;m guessing it should be a new one.&lt;br /&gt;So after I browse around for a while, I get this error: (in [ code ] for readability/ no H scroll)&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;Bad Request&lt;br /&gt;&lt;br /&gt;Your browser sent a request that this server could not understand.&lt;br /&gt;Size of a request header field exceeds server limit.&lt;br /&gt;Cookie&amp;#58; lq_avoid=0; __utmz=66168443.1220847007.1.1.utmcsr=&amp;#40;direct&amp;#41;|utmccn=&amp;#40;direct&amp;#41;|utmcmd=&amp;#40;none&amp;#41;; MintUnique=1; MintUniqueDay=1220767200; MintUniqueWeek=1220767200; MintUniqueMonth=1220248800; dic_member_id=91459; dic_pass_hash=70695106fe4272c14602087df906159f; dic_coppa=0; phpAds_banner&amp;#91;a894556938bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a803879838bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a655204873bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a604635525bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a999773531bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a176656225bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a737288444bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1420452878bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1053587072bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a674241017bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1727750451bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a2062415410bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1291258286bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a466811944bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1863354564bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a933063517bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a535110741bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1562449646bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a453405468bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a611347865bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1234792466bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a976580466bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1513418867bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a2125616715bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a905892025bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a909974722bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1938782030bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; MintUniqueHour=1220850000; phpAds_banner&amp;#91;a1489041096bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1300396037bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a689780883bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a397374053bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a396578944bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1270929739bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a483776938bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a724626839bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a104865854bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a227231197bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1764506479bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1636834050bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a99580568bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a2020865956bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1905214070bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a719601329bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a349224261bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1348666073bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1064124442bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1779213588bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a765076416bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a864319239bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a240232250bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a178148796bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1243038500bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; phpAds_banner&amp;#91;a1260041776bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; dic_modtids=%2C; phpAds_banner&amp;#91;a2092069412bc&amp;#93;=a%3A2%3A%7Bs%3A8%3A%22bannerid%22%3Bs%3A3%3A%22159%22%3Bs%3A6%3A%22zoneid%22%3Bs%3A1%3A%221%22%3B%7D; MintCrush=-1642708775; dic_session_id=ee8c3f930595c49be3dcbdf7acc7a8aa; dic_topicsread=a%3A17%3A%7Bi%3A62759%3Bi%3A1220848872%3Bi%3A62372%3Bi%3A1220847419%3Bi%3A62162%3Bi%3A1220847532%3Bi%3A62542%3Bi%3A1220847786%3Bi%3A62574%3Bi%3A1220847846%3Bi%3A61502%3Bi%3A1220847928%3Bi%3A60319%3Bi%3A1220848003%3Bi%3A12907%3Bi%3A1220848099%3Bi%3A62917%3Bi%3A1220848354%3Bi%3A63018%3Bi%3A1220849022%3Bi%3A62837%3Bi%3A1220849052%3Bi%3A62733%3Bi%3A1220849300%3Bi%3A63022%3Bi%3A1220851834%3Bi%3A63023%3Bi%3A1220850621%3Bi%3A61393%3Bi%3A1220850714%3Bi%3A11353%3Bi%3A12&lt;br /&gt;Apache Server at dreamincode.net Port 80&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Easily fixed by deleting the cookie, (and being a DIC++ by the looks of all the phpAds?), anyone else have the problem/is there a way DIC can fix it, or is it Chrome and IPB?</description>
			<category>Site Feedback</category>
			<pubDate>Mon, 08 Sep 2008 00:00:54 -0600</pubDate>
			<author>grantunderland</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63027.htm</link>
            <title>constructor in C and C++</title>
            <description>why we write userdefine copy constructor in c++ and wht is constructor with parametrlized inilization.&lt;br /&gt;</description>
			<category>C and C++</category>
			<pubDate>Mon, 08 Sep 2008 00:00:50 -0600</pubDate>
			<author>nosheen</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63023.htm</link>
            <title>Gday in Introduce Yourself</title>
            <description>Welcome to &amp;lt;/dream.in.code&amp;gt; bbq, great to have another aussie on the forums. &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>Introduce Yourself</category>
			<pubDate>Mon, 08 Sep 2008 00:00:30 -0600</pubDate>
			<author>RodgerB</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63021.htm</link>
            <title>Payroll3 in Java</title>
            <description>There are 3 very simple mistakes right here:&lt;br /&gt;&lt;br /&gt;double employee; sethourlyrate ();//employeehourly rate&lt;br /&gt;double employee; sethoursworked ();//employeeweeklywork hours&lt;br /&gt;double employee; setweeklypay();//employee 40 hourpay&lt;br /&gt;&lt;br /&gt;I assume those are the methods you&amp;#39;re supposed to write/rewrite.&lt;br /&gt;&lt;br /&gt;Consider the first line, it should look more like:&lt;br /&gt;&lt;br /&gt;public void setHourlyRate(double rate) {&lt;br /&gt;//  the code in this method should set a private variable &amp;#39;hourlyRate&amp;#39; of type double to equal the input value &amp;#39;rate&amp;#39;.&lt;br /&gt;//  the method should return void.&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Consider the second line:&lt;br /&gt;&lt;br /&gt;public void setHoursWorked(double hour) {&lt;br /&gt;//  the code in this method should set a private variable &amp;#39;hoursWorked&amp;#39; of type double to equal the input value &amp;#39;hour&amp;#39;.&lt;br /&gt;//  the method should return void.&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Consider the third line:&lt;br /&gt;&lt;br /&gt;public void setWeeklyPay() {&lt;br /&gt;//  the code in this method should set a private variable &amp;#39;weeklyPay&amp;#39; of type double to equal the product of &amp;#39;hourlyRate&amp;#39; and &amp;#39;hoursWorked&amp;#39;.&lt;br /&gt;//  the method should return void.&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;However, in order for these methods to make any sense, they have to belong to some class which in this case could be the Employee class that for all I know, you haven&amp;#39;t written yet.&lt;br /&gt;I think you should start right there, write your employee class and constructor.&lt;br /&gt;What you do is, read the assignment again and try to figure out what represents the employee and how can you represent it using primitive types. &lt;br /&gt;(some tips, employees have a:)&lt;br /&gt;*name (string)&lt;br /&gt;*hourlyRate&lt;br /&gt;*hoursWorked&lt;br /&gt;*weeklyPay&lt;br /&gt;*more, but what do you need to represent in this assignment?&lt;br /&gt;&lt;br /&gt;Check in later if you need more help.</description>
			<category>Java</category>
			<pubDate>Sun, 07 Sep 2008 23:59:32 -0600</pubDate>
			<author>Gloin</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63020.htm</link>
            <title>cpu usage over network in Software Development</title>
            <description>This is called distributed computing.&lt;br /&gt;&lt;br /&gt;Basically a client does jobs from a server with spare CPU time. It&amp;#39;s really not that complex. The hardest part is getting a lot of people to run your client.</description>
			<category>Software Development</category>
			<pubDate>Sun, 07 Sep 2008 23:56:07 -0600</pubDate>
			<author>Tom9729</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63026.htm</link>
            <title>ServletException in Java</title>
            <description>Hi,&lt;br /&gt;I am trying to run a servlet program (http://localhost:8080/CallSetup)through tomcat.It is showing the following error:&lt;br /&gt;&lt;br /&gt;&lt;!--quoteo--&gt;&lt;div class='quotetop'&gt;QUOTE&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--quotec--&gt;&lt;br /&gt;    exception&lt;br /&gt;&lt;br /&gt;    javax.servlet.ServletException: Servlet execution threw an exception&lt;br /&gt;&lt;br /&gt;    root cause&lt;br /&gt;&lt;br /&gt;    java.lang.NoClassDefFoundError: javax/persistence/EntityManagerFactory&lt;br /&gt;    com.ericsson.sip.RegistrationBrowserServlet.getRegistrations(RegistrationBrowserServlet.java:63)&lt;br /&gt;    com.ericsson.sip.RegistrationBrowserServlet.processRequest(RegistrationBrowserServlet.java:76)&lt;br /&gt;    com.ericsson.sip.RegistrationBrowserServlet.doGet(RegistrationBrowserServlet.java:125)&lt;br /&gt;    javax.servlet.http.HttpServlet.service(HttpServlet.java:690)&lt;br /&gt;    javax.servlet.http.HttpServlet.service(HttpServlet.java:803)&lt;br /&gt;&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;please assist me to solve this&lt;br /&gt;&lt;br /&gt;Thanks.</description>
			<category>Java</category>
			<pubDate>Sun, 07 Sep 2008 23:42:59 -0600</pubDate>
			<author>nila</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63025.htm</link>
            <title>Help with setprecision in C and C++</title>
            <description>Hello,&lt;br /&gt;I have this program in C++ where I have to do some calculations with data read from a text file with different number formats. For example the file may consists of:&lt;br /&gt;9.09090901&lt;br /&gt;18.1818178&lt;br /&gt;27.2345891&lt;br /&gt;8.9090090&lt;br /&gt;100.99991 &lt;br /&gt;After doing such calculations the final result should be one decimal place. For Example, if I have 9.09090901 I want it to be printed as 9.1. However, I have this working with setprecision(2) but if the number in the file is 18.181878 it retrns 18, which is incorrect, I need it to return 18.2. With this is mind, is there any way all numbers are rounded one decimal place.By any chance is there anyone can tell me how to do this or give some advice.Any help will be greatly appreciated. &lt;br /&gt;</description>
			<category>C and C++</category>
			<pubDate>Sun, 07 Sep 2008 23:35:35 -0600</pubDate>
			<author>tnjones</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63022.htm</link>
            <title>Wireless mouse in Computer Support &amp; Operating Systems</title>
            <description>my mx revolution has worked on my bed, a regular couch, wood, leather, plastic.... everything except glass.&lt;br /&gt;&lt;br /&gt;i have not tried microfiber</description>
			<category>Computer Support &amp; Operating Systems</category>
			<pubDate>Sun, 07 Sep 2008 23:25:12 -0600</pubDate>
			<author>capty99</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic61233.htm</link>
            <title>Reading A Wordpad File In Vb in Visual Basic</title>
            <description>&lt;!--quoteo(post=403849:date=20 Aug, 2008 &amp;#045; 01&amp;#58;54 PM:name=Shy Stan)--&gt;&lt;div class='quotetop'&gt;QUOTE(Shy Stan &amp;#064; 20 Aug, 2008 &amp;#045; 01&amp;#58;54 PM) [snapback]403849[/snapback]&lt;/div&gt;&lt;div class='quotemain'&gt;&lt;!--quotec--&gt;&lt;br /&gt;I need to read a wordpad file and parse data for mailing labels.  Can someome help me with this?&lt;br /&gt;&lt;!--QuoteEnd--&gt;&lt;/div&gt;&lt;!--QuoteEEnd--&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;d like to be able to do this, too. Although this is a pet project as I&amp;#39;m not in school and probably won&amp;#39;t ever go back to college. My project is for my dad. He listens to the ham radio and would like a program that he can keep track of the call signs and info regarding his listening to the radio. I have yet to setup a full program as I need to know how to save info to a text file and recall it. I guess this would be considered a database program, just simplified.&lt;br /&gt;&lt;br /&gt;I have the huge book &amp;quot;Mastering Visual Basic 6.0&amp;quot; but have yet to find how to write to a file, etc.&lt;br /&gt;&lt;br /&gt;Any help would be appreciated.&lt;br /&gt;&lt;br /&gt;Thank you,&lt;br /&gt;Brittany Dunlap&lt;br /&gt;&lt;br /&gt;EDIT__ This is all I&amp;#39;ve got so far as I need to know how to write to a file and then search a file and show contents of file in appropriate labels.&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;Private Sub cmdAdd_Click&amp;#40;&amp;#41;&lt;br /&gt;lblAdd.Caption = &amp;#34;Entry added.&amp;#34;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Private Sub cmdReset_Click&amp;#40;&amp;#41;&lt;br /&gt;txtCallSign.text = &amp;#34;&amp;#34;&lt;br /&gt;txtName.text = &amp;#34;&amp;#34;&lt;br /&gt;txtCountry.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreqStart.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreqEnd.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreq.text = &amp;#34;&amp;#34;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Private Sub cmdSearch_Click&amp;#40;&amp;#41;&lt;br /&gt;Dim varCallSign As String&lt;br /&gt;Dim varName As String&lt;br /&gt;Dim varCountry As String&lt;br /&gt;Dim varFreqStart As String&lt;br /&gt;Dim varFreqEnd As String&lt;br /&gt;Dim varFreq As String&lt;br /&gt;Dim varQRZ As Boolean&lt;br /&gt;Dim varUTC As String&lt;br /&gt;&lt;br /&gt;varCallSign = txtCallSign.text&lt;br /&gt;varName = txtName.text&lt;br /&gt;varCountry = txtCountry.text&lt;br /&gt;varFreqStart = txtFreqStart.text&lt;br /&gt;varFreqEnd = txtFreqEnd.text&lt;br /&gt;varFreq = txtFreq.text&lt;br /&gt;varUTC = txtUTC.text&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;Private Sub Form_Load&amp;#40;&amp;#41;&lt;br /&gt;txtCallSign.text = &amp;#34;&amp;#34;&lt;br /&gt;txtName.text = &amp;#34;&amp;#34;&lt;br /&gt;txtCountry.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreq.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreqStart.text = &amp;#34;&amp;#34;&lt;br /&gt;txtFreqEnd.text = &amp;#34;&amp;#34;&lt;br /&gt;txtUTC.text = &amp;#34;&amp;#34;&lt;br /&gt;End Sub&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;</description>
			<category>Visual Basic</category>
			<pubDate>Sun, 07 Sep 2008 23:14:32 -0600</pubDate>
			<author>bdunlap</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63019.htm</link>
            <title>union datatypes in C and C++</title>
            <description>&lt;a href=&quot;http://www.cplusplus.com/doc/tutorial/other_data_types.html&quot; target=&quot;_blank&quot;&gt;Check here:&lt;/a&gt;</description>
			<category>C and C++</category>
			<pubDate>Sun, 07 Sep 2008 23:09:34 -0600</pubDate>
			<author>nirvanarupali</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63017.htm</link>
            <title>is there anything in php like swings in java in PHP</title>
            <description>thanks martyr2,&lt;br /&gt;&lt;br /&gt;that worked like a gem once i removed whitespace in line no 1..&lt;br /&gt;u r great man..&lt;br /&gt;&lt;br /&gt;can u tell me how to install that php-gtk2&lt;br /&gt;&lt;br /&gt;thanks once again&lt;br /&gt;</description>
			<category>PHP</category>
			<pubDate>Sun, 07 Sep 2008 23:05:08 -0600</pubDate>
			<author>kummu4help</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63018.htm</link>
            <title>factorial in C and C++</title>
            <description>Perhaps look at a recursive approach to factorials&lt;br /&gt;&lt;br /&gt;start by passing an int to some function&lt;br /&gt;&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;&lt;br /&gt;int factorialFunc&amp;#40;int someInt&amp;#41;&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;&amp;nbsp; //code&lt;br /&gt;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//at some point you will call the function again&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;factorialFunc&amp;#40;int someInt&amp;#41;;&lt;br /&gt;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp; return factorialVal;&lt;br /&gt;}&lt;br /&gt;&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;&lt;br /&gt;Good luck &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>C and C++</category>
			<pubDate>Sun, 07 Sep 2008 22:56:33 -0600</pubDate>
			<author>bbq</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63014.htm</link>
            <title>Counting whitespace in a string in C and C++</title>
            <description>Thanks Martyr2&lt;br /&gt;&lt;br /&gt;i really missed that num is a pointer&lt;br /&gt;so S0n1C u can just replace my num with martyr2&amp;#39;s num and can proceed and also i forget to place null character at the end of string &lt;br /&gt;that was also identified by martyr2 only&lt;br /&gt;&lt;br /&gt;how poor i am (shy)&lt;br /&gt;&lt;br /&gt;so sorry for the errors and sonic just correct them urself before using my dirty code</description>
			<category>C and C++</category>
			<pubDate>Sun, 07 Sep 2008 22:48:13 -0600</pubDate>
			<author>kummu4help</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62755.htm</link>
            <title>A stupid question deserves a stupid answer in Games/Puzzles/Trivia/Jokes</title>
            <description>Hepatitis.&lt;br /&gt;&lt;br /&gt;What is the value of:&lt;br /&gt;&lt;br /&gt;[code=cpp] v[i] = i++;&lt;br /&gt;[/code]</description>
			<category>Games/Puzzles/Trivia/Jokes</category>
			<pubDate>Sun, 07 Sep 2008 22:37:18 -0600</pubDate>
			<author>nirvanarupali</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic63015.htm</link>
            <title>PROGRAM TO ENTER DATA INTO A DATABASE TABLE in PHP</title>
            <description>In this line:&lt;br /&gt;&lt;!--c1--&gt;&lt;div class='codetop'&gt;CODE&lt;/div&gt;&lt;div class='codemain'&gt;&lt;!--ec1--&gt;if &amp;#40;mysql_query&amp;#40;&amp;#036;query, &amp;#036;connect&amp;#41;&amp;#41; {&lt;!--c2--&gt;&lt;/div&gt;&lt;!--ec2--&gt;&lt;br /&gt;I would take out the connection argument (&amp;#036;connect). I&amp;#39;ve never had to use mysql_query in that manner.</description>
			<category>PHP</category>
			<pubDate>Sun, 07 Sep 2008 22:33:31 -0600</pubDate>
			<author>Moonbat</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62759.htm</link>
            <title>Chrome compatibility in Site Feedback</title>
            <description>Is anybody else having a problem with the DIC cookie corrupting with Chrome? I can&amp;#39;t remember the exact error, but I&amp;#39;ve had to clear the cookie a few times this week. I&amp;#39;ll post a screenshot next time it happens unless it&amp;#39;s already a known bug.</description>
			<category>Site Feedback</category>
			<pubDate>Sun, 07 Sep 2008 22:32:07 -0600</pubDate>
			<author>grantunderland</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62484.htm</link>
            <title>hello all in Introduce Yourself</title>
            <description>Welcome to &amp;lt;/dic&amp;gt; gheorghina. &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>Introduce Yourself</category>
			<pubDate>Sun, 07 Sep 2008 22:27:16 -0600</pubDate>
			<author>nirvanarupali</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62978.htm</link>
            <title>Bot Programming? in Software Development</title>
            <description>You don&amp;#39;t sound like you have a very good idea of what you want to do. &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>Software Development</category>
			<pubDate>Sun, 07 Sep 2008 22:27:08 -0600</pubDate>
			<author>Tom9729</author>
         </item>
         <item>
            <link>http://www.dreamincode.net/forums/showtopic62532.htm</link>
            <title>Hi^^ in Introduce Yourself</title>
            <description>Hello igkno, welcome to &amp;lt;/dic&amp;gt;. &lt;img src=&quot;style_emoticons/&lt;#EMO_DIR#&gt;/smile.gif&quot; style=&quot;vertical-align:middle&quot; emoid=&quot;:)&quot; border=&quot;0&quot; alt=&quot;smile.gif&quot; /&gt;</description>
			<category>Introduce Yourself</category>
			<pubDate>Sun, 07 Sep 2008 22:26:03 -0600</pubDate>
			<author>nirvanarupali</author>
         </item>
   </channel>
</rss>
