<?xml version="1.0" encoding="utf-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>DaniWeb IT Discussion Community</title>
		<link>http://www.daniweb.com/forums/</link>
		<description>Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support.</description>
		<language>en-US</language>
		<lastBuildDate>Thu, 24 Dec 2009 07:03:14 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/alphaimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community</title>
			<link>http://www.daniweb.com/forums/</link>
		</image>
		<item>
			<title>What decides the size of an exe file?</title>
			<link>http://www.daniweb.com/forums/thread248678.html</link>
			<pubDate>Thu, 24 Dec 2009 07:02:20 GMT</pubDate>
			<description><![CDATA[I just made a 'Hello World' program 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code Tags</a> </div>...]]></description>
			<content:encoded><![CDATA[<div>I just made a 'Hello World' program<br />
 <pre style="margin:20px; line-height:13px">#include&lt;stdio.h&gt;<br />
int main()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; printf(&quot;Hello World\n&quot;);<br />
&nbsp; &nbsp; return 0;<br />
}</pre> <pre style="margin:20px; line-height:13px">exe file size&nbsp; &nbsp; = 15.5 KB<br />
Source file size = 79.0&nbsp; B</pre>Then i made a data structure program (implementing stack, queue, deque)<br />
 <pre style="margin:20px; line-height:13px">exe file size&nbsp; &nbsp; = 21.9 KB<br />
Source file size = 17.3 KB</pre>So i guess it's not linearly dependent with its source file<br />
So what really decides the size of an exe file.<br />
PS - I think it is also compiler dependent 'coz exe files on turbo c++ are larger compared to those of code blocks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum118.html">C</category>
			<dc:creator>xavier666</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248678.html</guid>
		</item>
		<item>
			<title>Add youtube streaming videos in windows media player</title>
			<link>http://www.daniweb.com/forums/thread248677.html</link>
			<pubDate>Thu, 24 Dec 2009 06:53:51 GMT</pubDate>
			<description>how to add youtube videos in  windows player in winforms  using c#.net.or what is other way to do this.</description>
			<content:encoded><![CDATA[<div>how to add youtube videos in  windows player in winforms  using c#.net.or what is other way to do this.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>naren7</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248677.html</guid>
		</item>
		<item>
			<title><![CDATA[[For Hire] PHP Programmer / Coder - 4+ Years Experience]]></title>
			<link>http://www.daniweb.com/forums/thread248676.html</link>
			<pubDate>Thu, 24 Dec 2009 06:51:43 GMT</pubDate>
			<description><![CDATA[Hello Daniweb Members, 
 
I am offering my php coding service. I have been coding php/mysql scripts/sites/modifications for the past 4 years. 
 
 
 
I provide good service to all clients & only accept payment once my clients are happy with the work i have done/created for them. 
 
My rates are...]]></description>
			<content:encoded><![CDATA[<div>Hello Daniweb Members,<br />
<br />
I am offering my php coding service. I have been coding php/mysql scripts/sites/modifications for the past 4 years.<br />
<br />
<br />
<br />
I provide good service to all clients &amp; only accept payment once my clients are happy with the work i have done/created for them.<br />
<br />
My rates are based on the project and not by the hour which works out much cheaper for the client. Based in the United Kingdom &amp; speak full english.<br />
<br />
If you require any php work done please contact my and i will provide you with a price quote from there we can discuss further.<br />
<br />
Thanks.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum52.html">Post your Resume</category>
			<dc:creator>shakemelikeapig</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248676.html</guid>
		</item>
		<item>
			<title>change background color using the selected value from combo box</title>
			<link>http://www.daniweb.com/forums/thread248675.html</link>
			<pubDate>Thu, 24 Dec 2009 06:34:34 GMT</pubDate>
			<description><![CDATA[<div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code Tags</a> </div> <div>(<a href="#"...]]></description>
			<content:encoded><![CDATA[<div> <pre style="margin:20px; line-height:13px">&lt;html&gt;<br />
&lt;head&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  &lt;title&gt;Nhung rac roi ko hieu&lt;/title&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; function getvalue(list)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  while(list.options.length) list.options[list.selectedIndex].value=null;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  var value = list.options[list.selectedIndex].value;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  document.write(value);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  document.bgColor = value;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body bgColor=&quot;lavender&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Here is the list for you to Change the bgColor!<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;br/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;select name=&quot;list1&quot; onchange=&quot;getvalue(this)&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;green&quot;&gt;Green&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;orange&quot;&gt;Orange&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;yellow&quot;&gt;Yellow&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;option value=&quot;pink&quot;&gt;Pink&lt;/option&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/select&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</pre>Here is my code , it works but how can I do to remain the list each time click one option . I mean when I click one option the background changes, also the combo box is remainded to try the next option!<br />
Please help me clarify the problem. Thanks!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>thebluestar</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248675.html</guid>
		</item>
		<item>
			<title>windows 7 64-bit</title>
			<link>http://www.daniweb.com/forums/thread248674.html</link>
			<pubDate>Thu, 24 Dec 2009 06:18:55 GMT</pubDate>
			<description>hey i just want to ask does it matter to have 64 bit os instead of 32-bit?? 
 
i just want to know its advantages and disadvantages.. 
pls help me if u can...</description>
			<content:encoded><![CDATA[<div>hey i just want to ask does it matter to have 64 bit os instead of 32-bit??<br />
<br />
i just want to know its advantages and disadvantages..<br />
pls help me if u can...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum38.html">Windows Vista and Windows 7</category>
			<dc:creator>heman20</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248674.html</guid>
		</item>
		<item>
			<title>Delete a row in text file</title>
			<link>http://www.daniweb.com/forums/thread248673.html</link>
			<pubDate>Thu, 24 Dec 2009 06:10:33 GMT</pubDate>
			<description>Can anyone help me in deleting a row in a text file.... 
 
 
Thanks.</description>
			<content:encoded><![CDATA[<div>Can anyone help me in deleting a row in a text file....<br />
<br />
<br />
Thanks.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Karthika_g</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248673.html</guid>
		</item>
		<item>
			<title>Total C# newbie Visual Studio Version Question</title>
			<link>http://www.daniweb.com/forums/thread248672.html</link>
			<pubDate>Thu, 24 Dec 2009 05:56:34 GMT</pubDate>
			<description><![CDATA[I'm at the beginning of my journey to get a computer science degree and I'm taking an intro to programming course taught in C# (I'll also be using it next semester for my data structures and algorithms class).  
 
I took a visual basic class last semester that required visual studio 2008 so I...]]></description>
			<content:encoded><![CDATA[<div>I'm at the beginning of my journey to get a computer science degree and I'm taking an intro to programming course taught in C# (I'll also be using it next semester for my data structures and algorithms class). <br />
<br />
I took a visual basic class last semester that required visual studio 2008 so I purchased it. The C# class uses the 2005 version of visual studio, and the campus lab only has 2005 installed. Will I have to use 2005 or can I somehow make my VS 2008 work for the class?<br />
<br />
I know my Visual Basic programs were not compatible.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>mixelplik</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248672.html</guid>
		</item>
		<item>
			<title><![CDATA[MAFIAWAR GAME LINK's]]></title>
			<link>http://www.daniweb.com/forums/thread248671.html</link>
			<pubDate>Thu, 24 Dec 2009 05:55:10 GMT</pubDate>
			<description>Visit this sit daily updated add more link daily 
visit and get free money Click Links  
 
http://sarfrazworld.page.tl</description>
			<content:encoded><![CDATA[<div>Visit this sit daily updated add more link daily<br />
visit and get free money Click Links <br />
<br />
<a rel="nofollow" class="t" href="http://sarfrazworld.page.tl" target="_blank">http://sarfrazworld.page.tl</a></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum43.html">Promotion and Marketing Plans</category>
			<dc:creator>Mumtaz607</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248671.html</guid>
		</item>
		<item>
			<title>how do I proceed to do seo for a site?</title>
			<link>http://www.daniweb.com/forums/thread248670.html</link>
			<pubDate>Thu, 24 Dec 2009 05:52:37 GMT</pubDate>
			<description>I have law center site.Now My main Concern is to make it in the page of google with specified keyword.How would I do that?sort out this problem guys...</description>
			<content:encoded><![CDATA[<div>I have law center site.Now My main Concern is to make it in the page of google with specified keyword.How would I do that?sort out this problem guys...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum45.html">Search Engine Optimization</category>
			<dc:creator>personalinjury0</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248670.html</guid>
		</item>
		<item>
			<title>Passing parameter to system() with space in folder name</title>
			<link>http://www.daniweb.com/forums/thread248668.html</link>
			<pubDate>Thu, 24 Dec 2009 05:48:16 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
   I am using system function to invoke  a jar file in MAC OS. But the jar file path has space in the folder name. 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680"...]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
   I am using system function to invoke  a jar file in MAC OS. But the jar file path has space in the folder name.<br />
 <pre style="margin:20px; line-height:13px">string arg1= &quot;MyWindow&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; string jarFile = &quot;java -jar /Users/User1/Desktop/Sample Java/Demo.jar &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; jarFile += arg1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; system(jarFile.c_str());</pre> &quot;/Sample Java&quot;  folder name has space in between. Because of which the jar is not coming up. How to to pass a path which has space in folder name to system function.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>sakthi_perumal</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248668.html</guid>
		</item>
		<item>
			<title>Hii</title>
			<link>http://www.daniweb.com/forums/thread248667.html</link>
			<pubDate>Thu, 24 Dec 2009 05:47:43 GMT</pubDate>
			<description>Your conspicuous knowledge, longanimity, visceral wisdom and training submit made for a grapheme aggregation with lots of techniques which were leisurely to see and do . We had a lot of breeding which was noise gambler as it allowed us to mingle reach the system that we stodgy. I perception...</description>
			<content:encoded><![CDATA[<div>Your conspicuous knowledge, longanimity, visceral wisdom and training submit made for a grapheme aggregation with lots of techniques which were leisurely to see and do . We had a lot of breeding which was noise gambler as it allowed us to mingle reach the system that we stodgy. I perception presumptuous to practicing what I learned. Way to go - thanks a mil for reaching so far!<br />
Sara<br />
<a rel="nofollow" class="t" href="http://www.trainwithmeonline.com/custom.asp" target="_blank">workout routine</a></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>sara10101</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248667.html</guid>
		</item>
		<item>
			<title>References or Ebooks</title>
			<link>http://www.daniweb.com/forums/thread248666.html</link>
			<pubDate>Thu, 24 Dec 2009 05:47:19 GMT</pubDate>
			<description><![CDATA[I'm not sure this is the correct forum for this, but it's at least relative. I was wondering if anyone knew of some decent references and ebooks for a beginning Django user.Yes, I know djangoproject has tutorials, but there decently hard to understand. If someone could either help or steer me in...]]></description>
			<content:encoded><![CDATA[<div>I'm not sure this is the correct forum for this, but it's at least relative. I was wondering if anyone knew of some decent references and ebooks for a beginning Django user.Yes, I know djangoproject has tutorials, but there decently hard to understand. If someone could either help or steer me in the right direction would be great! I would prefer free, I cannot afford a book or ebook at this moment. Christmas and other issues.<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum114.html">Python</category>
			<dc:creator>Democles</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248666.html</guid>
		</item>
		<item>
			<title>change background color of web</title>
			<link>http://www.daniweb.com/forums/thread248664.html</link>
			<pubDate>Thu, 24 Dec 2009 05:33:34 GMT</pubDate>
			<description><![CDATA[<div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code Tags</a> </div> <div>(<a href="#"...]]></description>
			<content:encoded><![CDATA[<div> <pre style="margin:20px; line-height:13px">&lt;html&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;head&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;title&gt;Web just for training&lt;/title&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;script type=&quot;text/javascrip&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; function chBG(kolor)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  document.getElementById('ab').style.background = kolor;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/script&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/head&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;body id=&quot;ab&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;button&quot; name=&quot;b3&quot; value=&quot;green&quot; onclick=&quot;chBG(this.value)&quot;&gt;&lt;br/&gt;&lt;br/&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;button&quot; name=&quot;b4&quot; value=&quot;blue&quot; onclick=&quot;chBG(this.value)&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/body&gt;<br />
&lt;/html&gt;</pre>Here is my code to change the background color but I does not work!I don't know why, please help me clarify the problem! Thank you!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>thebluestar</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248664.html</guid>
		</item>
		<item>
			<title>VB6 Inet FP</title>
			<link>http://www.daniweb.com/forums/thread248663.html</link>
			<pubDate>Thu, 24 Dec 2009 05:24:17 GMT</pubDate>
			<description><![CDATA[hello all, 
 
i m newbie here... and i have one silly question to ask about inet ftp... i was trying to ftp using inet ftp in vb6, but keep getting 'variable not defined' error for my Inet1 (eg: inet1.URL = host_name) 
 
do i need to register any component or add any reference prior to use this...]]></description>
			<content:encoded><![CDATA[<div>hello all,<br />
<br />
i m newbie here... and i have one silly question to ask about inet ftp... i was trying to ftp using inet ftp in vb6, but keep getting 'variable not defined' error for my Inet1 (eg: inet1.URL = host_name)<br />
<br />
do i need to register any component or add any reference prior to use this inet ftp function?<br />
<br />
appreciate your prompt help on this... thanks alot =)</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum4.html">Visual Basic 4 / 5 / 6</category>
			<dc:creator>harn991982</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248663.html</guid>
		</item>
		<item>
			<title>Gmail Style WebMail - MailToGo.Net</title>
			<link>http://www.daniweb.com/forums/thread248662.html</link>
			<pubDate>Thu, 24 Dec 2009 05:12:34 GMT</pubDate>
			<description>For sale is MailToGo.Net. 
 
The following is a list of the major features of MailToGo.Net. 
 
Common:  
 
SMS notification of new mail. 
 
Mobile/PDA mail access to account.</description>
			<content:encoded><![CDATA[<div>For sale is MailToGo.Net.<br />
<br />
The following is a list of the major features of MailToGo.Net.<br />
<br />
Common: <br />
<br />
SMS notification of new mail.<br />
<br />
Mobile/PDA mail access to account.<br />
<br />
Low server resources <br />
<br />
No separate server required <br />
<br />
Uses PHP and MySQL <br />
<br />
Comprehensive Spam Protection <br />
<br />
Freely configurable DNSBL filter <br />
<br />
Statistical, adaptive spam filters with very high detection rates and local and global database mode <br />
<br />
Integration of external tools like SpamAssassin via a flexible control system for processing e-mail header fields <br />
<br />
Virus Protection <br />
<br />
Integration of ClamAV, a reliable, free open source antivirus solution <br />
<br />
Integration of external tools via a flexible control system for processing e-mail header fields <br />
<br />
Comprehensive security features <br />
<br />
Works fine with SSL-secured connections <br />
<br />
SSL option activated at log in <br />
<br />
S / MIME Support: encrypting and signing e-mails <br />
<br />
Optimized for best performance <br />
<br />
Caching of intensive and frequently performed operations to effectively reduce the server load <br />
<br />
Stream-oriented, for use in web applications optimized e-mail parser - it is read only parts of the emails that are actually needed for the presentation of the current web <br />
<br />
No special knowledge is required <br />
<br />
User-friendly, system and management <br />
<br />
No fiddling with configuration files or console applications needed <br />
<br />
Users <br />
<br />
Customizable overview page with a freely positionable mini-elements (widgets), such as <br />
<br />
Overview <br />
<br />
Folder page <br />
<br />
Webdisk drag and drop access <br />
<br />
Tasks Summary <br />
<br />
Calendar <br />
<br />
Ad space <br />
<br />
Web Search <br />
<br />
E-mail management <br />
<br />
Inbox with sorting and grouping functionality <br />
<br />
Mass actions such as deleting, forwarding, downloading, Select, Move <br />
<br />
Integrated quick e-mail preview <br />
<br />
Administrative Tools folder with folders and subfolders to any depth <br />
<br />
Individually for each folder definable display options (grouping mail) per page <br />
<br />
Context menu to every e-mail Schnellaktionen <br />
<br />
Smart Folders: Folders view all content that match the adjustable filter criteria <br />
<br />
Default Folder: Inbox, Outbox, Drafts, Spam, Trash <br />
<br />
E-mail functions like Reply, Reply all, Forward, Redirect, download and print <br />
<br />
E-mail editor with text and HTML editor (WYSIWYG), address book, the fast, automatic address completion, adjustable sender and reply address, facilities, etc. read receipt. <br />
<br />
Ability to save and load designs <br />
<br />
New: S / MIME support (signing, encryption and decryption, signature check and more) <br />
<br />
Anti-Spam <br />
<br />
Anti-Virus <br />
<br />
Aliases <br />
<br />
Call external POP3 accounts (POP3 Collection Service) <br />
<br />
Filtering rules for incoming e-mails <br />
<br />
Business Card Integration (VCF) <br />
<br />
Notification of new e-mails via SMS <br />
<br />
SMS <br />
<br />
SMS post <br />
<br />
Outgoing SMS <br />
<br />
Account management for billing of SMS credits <br />
<br />
Automatic Account charging the user via PayPal is possible <br />
<br />
Notification of new e-mails via SMS <br />
<br />
Notification of appointments by SMS <br />
<br />
Organizer <br />
<br />
Calendar with extensive options for dates, eg regular repeats <br />
<br />
Task Management <br />
<br />
Contacts with self-completion, import and export (VCF and CSV), contact groups and more <br />
<br />
Note manage to quickly store and retrieve text notes <br />
<br />
Webdisk - The virtual disk on the Internet <br />
<br />
Different folder views (icon and list view) <br />
<br />
Clipboard for file management <br />
<br />
Upload many files <br />
<br />
Administrator <br />
<br />
Overview page - important at a Glance <br />
<br />
Statistics on your e-mail service <br />
<br />
Information on your webspace / server <br />
<br />
Space for your notes <br />
<br />
System self-check with valuable hints and tips to optimize your individual installation <br />
<br />
User Management <br />
<br />
Clear, individual user-sortable list <br />
<br />
Filtering options (by status and group) <br />
<br />
Convenient search function <br />
<br />
User actions such as quick-lock, delete, unlock, unlock, etc. <br />
<br />
Full Details view <br />
<br />
Group Management <br />
<br />
User Groups to the allocation of individual user rights <br />
<br />
Many rights-configuration opportunities, such Space, traffic, retrieval and delivery intervals, signatures, advertising insertion, etc. <br />
<br />
Workgroup Management <br />
<br />
Management of working groups on cooperation of several users with common e-mail address <br />
<br />
User-activity view <br />
<br />
Showing users sorted by Activity <br />
<br />
Quickly locating inactive users <br />
<br />
Quickly locating users who try to use your service <br />
<br />
Newsletter distribution <br />
<br />
Sending e-mail newsletter to all users or certain user groups <br />
<br />
Extensive settings <br />
<br />
General Preferences from the service, to register to caching, to countries and to license <br />
<br />
Optional activation of new registrations be activated through SMS activation code <br />
<br />
E-mail settings (receiving, shipping, anti-spam, anti-virus) <br />
<br />
Receive rules for flexible e-mail processing <br />
<br />
Webdisk settings with forbidden Datei-/MIME-Type and Icon Management <br />
<br />
SMS settings with multiple gateways and SMS investable Types <br />
<br />
Coupon Code Administration <br />
<br />
Custom profile fields <br />
<br />
Language file management functions for working with customizable text <br />
<br />
Banner management <br />
<br />
FAQ Management <br />
<br />
Useful Tools <br />
<br />
Database optimization, repair and structural testing <br />
<br />
File system and cache optimization <br />
<br />
Maintenance functions: Inactive users, Trash Cleanup <br />
<br />
Browser and log archiving</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum164.html">Websites for Sale</category>
			<dc:creator>mxmedia</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248662.html</guid>
		</item>
		<item>
			<title>Application formate</title>
			<link>http://www.daniweb.com/forums/thread248661.html</link>
			<pubDate>Thu, 24 Dec 2009 05:08:31 GMT</pubDate>
			<description><![CDATA[Does anyone has "Leave Application Format" where leave is categorised into SICK & EARN LEAVE, here one needs to enter information into mysql throught PHP and retrive it. 
 
I have few queries, how do I take care of following - 
(1) If any public holidays comes between SL or EL and then it is...]]></description>
			<content:encoded><![CDATA[<div>Does anyone has &quot;Leave Application Format&quot; where leave is categorised into SICK &amp; EARN LEAVE, here one needs to enter information into mysql throught PHP and retrive it.<br />
<br />
I have few queries, how do I take care of following -<br />
(1) If any public holidays comes between SL or EL and then it is<br />
summed with either SL or EL taken.<br />
(2) How do I take care of Saturday &amp; Sunday.<br />
(3) How do I take care of total SL or EL from outstanding balance of<br />
SL(7 days) &amp; EL(20 days).<br />
(4) How do I generate a balance when any number of days has been<br />
taken for any type of SL/EL.<br />
(5) How do I generate a e-mail confirmation for request to Team<br />
Manager for his approval after request for SL/EL has been made.<br />
(6) How do I generate a final approval emails to both Team Manager<br />
&amp; HR-Manager about the confirmation that SL/EL has been<br />
approved.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>gohar1131</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248661.html</guid>
		</item>
		<item>
			<title>MarketLance.Net Freelance Site For Sale</title>
			<link>http://www.daniweb.com/forums/thread248660.html</link>
			<pubDate>Thu, 24 Dec 2009 05:03:29 GMT</pubDate>
			<description>If you have your own hosting and would like the site moved, I will also do that for free.  
 
All domains are tansferred to your GoDaddy.com account free as well. 
 
If you have any questions or requests, please let me know. 
 
Now, on with the listing. 
 
For Sale is MarketLance.Net, a freelance...</description>
			<content:encoded><![CDATA[<div>If you have your own hosting and would like the site moved, I will also do that for free. <br />
<br />
All domains are tansferred to your GoDaddy.com account free as well.<br />
<br />
If you have any questions or requests, please let me know.<br />
<br />
Now, on with the listing.<br />
<br />
For Sale is MarketLance.Net, a freelance webmaster and programmers marketplace site. The features of the site are listed below.<br />
<br />
Reverse Bidding System <br />
<br />
Escrow payment <br />
<br />
Personal Message Board <br />
<br />
Paypal Payment gateway integrated <br />
<br />
Easy bidding and seller invitation system <br />
<br />
Comprehensive admin area <br />
<br />
Customized email templates <br />
<br />
Admin configurable fees <br />
<br />
Secured password <br />
<br />
Easily customizable header and footer <br />
<br />
Extensive site Reports <br />
<br />
Front End Features<br />
<br />
Projects are categorized into skill categories for convenient browsing <br />
<br />
Front page display for project skill categories, front page featured projects and latest projects <br />
<br />
Ability to include meta information on categories <br />
<br />
Top buyer <br />
<br />
Top Seller <br />
<br />
High Budget projects <br />
<br />
Urgent Projects section <br />
<br />
Categorizing projects according to skill set <br />
<br />
Contact us form for getting feedback from visitors <br />
<br />
Resend activation link <br />
<br />
Password retrieval system <br />
<br />
Advanced Search based on keywords and skills <br />
<br />
View financial transactions <br />
<br />
Rating and review buyer and seller <br />
<br />
Email notifications on create, award, escrow and rating <br />
<br />
Ability to Deposit funds to account from Paypal <br />
<br />
Ability to send PMB to everyone involved in the project <br />
<br />
Special Features for Sellers<br />
<br />
Comprehensive Account management <br />
<br />
Easy edit profile <br />
<br />
Ability to view bids <br />
<br />
Post bids on multiple projects <br />
<br />
Daily email notification of projects <br />
<br />
Place bid, retract bid, accept/reject projects <br />
<br />
Manage bids on projects <br />
<br />
Send private messages to buyers <br />
<br />
Abililty to transfer monies to buyer <br />
<br />
Abililty to favorite a seller <br />
<br />
Ability to ban a buyer <br />
<br />
Abililty to build profile along with logo etc <br />
<br />
Ability to rate and review buyers <br />
<br />
Abiilty to report violation of projects <br />
<br />
Maintain online account of all financial transactions <br />
<br />
Ability to withdraw funds by paypal <br />
<br />
Special Features of Buyers<br />
<br />
Ability to post multiple projects <br />
<br />
Ability to post Featured, urgent and hide project bids <br />
<br />
Create Escrow payment <br />
<br />
Ability to upload files through file manager <br />
<br />
Manage bids on projects <br />
<br />
Contact Seller via Project message board <br />
<br />
Invite top Sellers <br />
<br />
View top Sellers, ratings and review <br />
<br />
Search service provider according to skillset <br />
<br />
Abililty to favorite a seller <br />
<br />
Ability to ban a seller <br />
<br />
Ability to add funds from Paypal <br />
<br />
Ability to transfer funds <br />
<br />
Ability to withdraw funds <br />
<br />
Admin Panel Features<br />
<br />
Comprehensive Dashboard <br />
<br />
Easily configurable site settings, payment settings <br />
<br />
Projects posted today/yesterday/last 7 days etc <br />
<br />
Pending withdrawal and escrow release notification <br />
<br />
Set date format for the site <br />
<br />
Ability to take complete database backup <br />
<br />
Configure fees for Buyers and Sellers <br />
<br />
View all billing transactions <br />
<br />
Add/edit/remove transactions <br />
<br />
View/Edit/Delete Members <br />
<br />
Search members <br />
<br />
Add/edit/ delete categories <br />
<br />
Manage static pages</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum164.html">Websites for Sale</category>
			<dc:creator>mxmedia</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248660.html</guid>
		</item>
		<item>
			<title>newbie questionss</title>
			<link>http://www.daniweb.com/forums/thread248659.html</link>
			<pubDate>Thu, 24 Dec 2009 04:56:22 GMT</pubDate>
			<description>Hello guys, first of all.. am gonna say that i googled and searched the forum alot.. nothing to be found.. 
 
So my question is.. 
 
1- Where does my actual manual written code go in C# + GUI (WindowsFormsApplication not the console one.) 
 
Does it go in the Program.cs or Form.cs? and where...</description>
			<content:encoded><![CDATA[<div>Hello guys, first of all.. am gonna say that i googled and searched the forum alot.. nothing to be found..<br />
<br />
So my question is..<br />
<br />
1- Where does my actual manual written code go in C# + GUI (WindowsFormsApplication not the console one.)<br />
<br />
Does it go in the Program.cs or Form.cs? and where exactly? Do i make a main method ? very very confusing... please help. <br />
<br />
Sorry if I was unclear about a couple of things.<br />
<br />
Best Regards to all..</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>roswell67</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248659.html</guid>
		</item>
		<item>
			<title>Australian Internet Filter - Your 2 cents</title>
			<link>http://www.daniweb.com/forums/thread248658.html</link>
			<pubDate>Thu, 24 Dec 2009 04:40:45 GMT</pubDate>
			<description><![CDATA[Hi and I have heard that the australian internet filter (isp level) is due in 2010 which is comming soon... Just like thousands of other people around the nation I will be finding a way around the filter. I have read some isp's have already installed the filter for a trial and just need to flick a...]]></description>
			<content:encoded><![CDATA[<div>Hi and I have heard that the australian internet filter (isp level) is due in 2010 which is comming soon... Just like thousands of other people around the nation I will be finding a way around the filter. I have read some isp's have already installed the filter for a trial and just need to flick a switch to get it working.<br />
<br />
Now that you are familiar with the situation aussies are faced with I hope daniweb isn't blocked on the blacklist. What do you think about this filter because I would say it sux. I know many computer languages  and have had some experience with network filters so shouldn't be a problem to go around the filter as one day the whole internet will be blocked. I remember a place where google was blocked. Anyways your opinion...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum6.html"><![CDATA[Geeks' Lounge]]></category>
			<dc:creator>cwarn23</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248658.html</guid>
		</item>
		<item>
			<title>Visual Basic 6</title>
			<link>http://www.daniweb.com/forums/thread248657.html</link>
			<pubDate>Thu, 24 Dec 2009 04:39:58 GMT</pubDate>
			<description><![CDATA[I have tried following code to open an existing excel file. the code gets executed but the excel file does not appear on the monitor please help. 
Dim xlTmp As Excel.Application 
Set xlTmp = New Excel.Application 
xlTmp.Workbooks.Open "L:\FormsNRegisters\Accounts\Bill_Forms.xls" 
Dim xlSht As...]]></description>
			<content:encoded><![CDATA[<div>I have tried following code to open an existing excel file. the code gets executed but the excel file does not appear on the monitor please help.<br />
Dim xlTmp As Excel.Application<br />
Set xlTmp = New Excel.Application<br />
xlTmp.Workbooks.Open &quot;L:\FormsNRegisters\Accounts\Bill_Forms.xls&quot;<br />
Dim xlSht As Excel.Worksheet<br />
Set xlSht = xlTmp.Sheets(1)</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum4.html">Visual Basic 4 / 5 / 6</category>
			<dc:creator>R_K_Sarma</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248657.html</guid>
		</item>
		<item>
			<title>Jobs in Karachi, Lahore, Islamabad, Pakistan / without any Investment Work at Home As</title>
			<link>http://www.daniweb.com/forums/thread248656.html</link>
			<pubDate>Thu, 24 Dec 2009 04:26:43 GMT</pubDate>
			<description>http://www.jobz.pk/government-jobs/ while private jobs can be viewed at http://www.jobz.pk/private-jobs/. Few of my friends got very good jobs via this website, may be next turn is yours. jobz.pk is the best.  
 
Regards, 
My Id – 1263 
 
Suitable for Everyone Assignment / ad posting Jobs   @ free...</description>
			<content:encoded><![CDATA[<div><a rel="nofollow" class="t" href="http://www.jobz.pk/government-jobs/" target="_blank">http://www.jobz.pk/government-jobs/</a> while private jobs can be viewed at <a rel="nofollow" class="t" href="http://www.jobz.pk/private-jobs/" target="_blank">http://www.jobz.pk/private-jobs/</a>. Few of my friends got very good jobs via this website, may be next turn is yours. jobz.pk is the best. <br />
<br />
Regards,<br />
My Id – 1263<br />
<br />
Suitable for Everyone Assignment / ad posting Jobs   @ free of cost. No investment or deposit or renewal fee at any stage. Make money from home no investment. Genuine online job opportunities. Anyone can easily do these jobs with basic knowledge of internet. Work at home and turn your free time into . No fees or deposit, So start today.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum30.html">Advertising Sales Strategies</category>
			<dc:creator>silyousmile</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248656.html</guid>
		</item>
		<item>
			<title><![CDATA[LEXAR USB Secure II & Windows 7]]></title>
			<link>http://www.daniweb.com/forums/thread248655.html</link>
			<pubDate>Thu, 24 Dec 2009 04:18:47 GMT</pubDate>
			<description><![CDATA[My whole work life is on my flash drive.  I just got a new Dell with Windows 7 and it won't allow me to get to the encrypted vault to enter my password on my flashdrive.  I can't get to anything.  The troubleshoot program doesn't help.  Can anyone offer any suggestions?]]></description>
			<content:encoded><![CDATA[<div>My whole work life is on my flash drive.  I just got a new Dell with Windows 7 and it won't allow me to get to the encrypted vault to enter my password on my flashdrive.  I can't get to anything.  The troubleshoot program doesn't help.  Can anyone offer any suggestions?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum38.html">Windows Vista and Windows 7</category>
			<dc:creator>chaos1</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248655.html</guid>
		</item>
		<item>
			<title>Would you buy a virtual good as a xmas gift for your client?</title>
			<link>http://www.daniweb.com/forums/thread248654.html</link>
			<pubDate>Thu, 24 Dec 2009 03:49:04 GMT</pubDate>
			<description>Tis the season to be giving and if you have a business, it is very important to spread the love. So would you give your clients an virtual good or gift instead? Would you accept virtual gifts from a vendor?</description>
			<content:encoded><![CDATA[<div>Tis the season to be giving and if you have a business, it is very important to spread the love. So would you give your clients an virtual good or gift instead? Would you accept virtual gifts from a vendor?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248654.html</guid>
		</item>
		<item>
			<title>Best free sites with Christmas cards, templates and games</title>
			<link>http://www.daniweb.com/forums/thread248652.html</link>
			<pubDate>Thu, 24 Dec 2009 03:34:33 GMT</pubDate>
			<description>Can anyone tell me the best free sites with Christmas cards, templates and games? It is urgent! Please HELP!!! Please HELP!!!</description>
			<content:encoded><![CDATA[<div>Can anyone tell me the best free sites with Christmas cards, templates and games? It is urgent! Please HELP!!! Please HELP!!!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum92.html">Windows Software</category>
			<dc:creator>dwightsmith2009</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248652.html</guid>
		</item>
		<item>
			<title>Filter results from drop down html</title>
			<link>http://www.daniweb.com/forums/thread248651.html</link>
			<pubDate>Thu, 24 Dec 2009 03:07:00 GMT</pubDate>
			<description><![CDATA[<div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code Tags</a> </div> <div>(<a href="#"...]]></description>
			<content:encoded><![CDATA[<div> <pre style="margin:20px; line-height:13px">$filter = $HTTP_POST_VARS['att'];<br />
$result = mysql_query(&quot;SELECT * FROM postingbob WHERE category ='{$filter}' &quot;)or die(mysql_error());</pre>That's my php code which basically takes values from 'att' in my html form<br />
 <pre style="margin:20px; line-height:13px">&lt;div class=&quot;vx_two&quot; style=&quot;float:right&quot;&gt;<br />
&lt;select id=&quot;two&quot; title=&quot;Select a category&quot; class=&quot;pinkselect&quot; name=&quot;att&quot;&gt;<br />
&lt;option value=&quot;Addictions&quot;&gt;Sort By Category&lt;/option&gt;<br />
&lt;option value=&quot;Addictions&quot;&gt;Default&lt;/option&gt;<br />
<br />
&lt;option value=&quot;Addictions&quot;&gt;Addictions&lt;/option&gt;<br />
&lt;option value=&quot;Animals&quot;&gt;Animals&lt;/option&gt;<br />
&lt;option value=&quot;Arts&quot;&gt;Arts&lt;/option&gt;<br />
&lt;option value=&quot;Autos&quot;&gt;Autos&lt;/option&gt;<br />
&lt;option value=&quot;Beauty&quot;&gt;Beauty&lt;/option&gt;<br />
&lt;option value=&quot;Community&quot;&gt;Community&lt;/option&gt;<br />
&lt;option value=&quot;Confessions&quot;&gt;Confessions&lt;/option&gt;<br />
&lt;option value=&quot;Education&quot;&gt;Education&lt;/option&gt;<br />
&lt;option value=&quot;Food &amp;amp; Drink&quot;&gt;Food &amp;amp; Drink&lt;/option&gt;<br />
&lt;option value=&quot;Funny&quot;&gt;Funny&lt;/option&gt;<br />
&lt;option value=&quot;Games&quot;&gt;Games&lt;/option&gt;<br />
&lt;option value=&quot;Hate&quot;&gt;Hate&lt;/option&gt;<br />
&lt;option value=&quot;Health&quot;&gt;Health&lt;/option&gt;<br />
&lt;option value=&quot;Hobbies&quot;&gt;Hobbies&lt;/option&gt;<br />
&lt;option value=&quot;Holidays&quot;&gt;Holidays&lt;/option&gt;<br />
&lt;option value=&quot;Internet&quot;&gt;Internet&lt;/option&gt;<br />
&lt;option value=&quot;Legal Information&quot;&gt;Legal Information&lt;/option&gt;<br />
&lt;option value=&quot;Lifestyle&quot;&gt;Lifestyle&lt;/option&gt;<br />
&lt;option value=&quot;Movies&quot;&gt;Movies&lt;/option&gt;<br />
&lt;option value=&quot;Music&quot;&gt;Music&lt;/option&gt;<br />
&lt;option value=&quot;Office&quot;&gt;Office&lt;/option&gt;<br />
&lt;option value=&quot;Parenting&quot;&gt;Parenting&lt;/option&gt;<br />
&lt;option value=&quot;Pregnancy&quot;&gt;Pregnancy&lt;/option&gt;<br />
&lt;option value=&quot;Petitions&quot;&gt;Petitions&lt;/option&gt;<br />
&lt;option value=&quot;Relationships&quot;&gt;Relationships&lt;/option&gt;<br />
&lt;option value=&quot;Religion&quot;&gt;Religion&lt;/option&gt;<br />
&lt;option value=&quot;Science&quot;&gt;Science&lt;/option&gt;<br />
&lt;option value=&quot;Sex&quot;&gt;Sex&lt;/option&gt;<br />
&lt;option value=&quot;Sports&quot;&gt;Sports&lt;/option&gt;<br />
&lt;option value=&quot;Travel&quot;&gt;Travel&lt;/option&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/select&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&lt;/div&gt;</pre><br />
It does not show any results when i click the options from the drop down menu.I have a code to display it.(works when i dnt have the drop down in place), Don't think it's the 3 'addiction' options that cause it not to show.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>tunde011</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248651.html</guid>
		</item>
		<item>
			<title>Social Media Ads - How likely are you to click to them?</title>
			<link>http://www.daniweb.com/forums/thread248650.html</link>
			<pubDate>Thu, 24 Dec 2009 02:53:36 GMT</pubDate>
			<description>Many businesses advertise on social media with the hopes of a higher CTR and sales. I can count in one hand the times I have clicked to a social ad on Facebook. What about you? How more likely are you to click than to a paid search keyword ad on Google?</description>
			<content:encoded><![CDATA[<div>Many businesses advertise on social media with the hopes of a higher CTR and sales. I can count in one hand the times I have clicked to a social ad on Facebook. What about you? How more likely are you to click than to a paid search keyword ad on Google?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248650.html</guid>
		</item>
		<item>
			<title>Dev CPP Help</title>
			<link>http://www.daniweb.com/forums/thread248649.html</link>
			<pubDate>Thu, 24 Dec 2009 02:40:56 GMT</pubDate>
			<description>hei 
May I know how to handle dev cpp; 
 
It shows error even for simple programs which I had successfully run in turbo c 3.0</description>
			<content:encoded><![CDATA[<div>hei<br />
May I know how to handle dev cpp;<br />
<br />
It shows error even for simple programs which I had successfully run in turbo c 3.0</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum118.html">C</category>
			<dc:creator>niyasc</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248649.html</guid>
		</item>
		<item>
			<title>Allocating $$ for social media instead of advertising</title>
			<link>http://www.daniweb.com/forums/thread248648.html</link>
			<pubDate>Thu, 24 Dec 2009 02:29:46 GMT</pubDate>
			<description><![CDATA[I just read an article that stated Pepsi will invest on social media instead of advertising during the Super Bowl breaks. http://www.socialmediatoday.com/SMC/159401 
 
Do you think more companies will follow Pepsi's footsteps?]]></description>
			<content:encoded><![CDATA[<div>I just read an article that stated Pepsi will invest on social media instead of advertising during the Super Bowl breaks. <a rel="nofollow" class="t" href="http://www.socialmediatoday.com/SMC/159401" target="_blank">http://www.socialmediatoday.com/SMC/159401</a><br />
<br />
Do you think more companies will follow Pepsi's footsteps?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248648.html</guid>
		</item>
		<item>
			<title>GridView Update Problem</title>
			<link>http://www.daniweb.com/forums/thread248647.html</link>
			<pubDate>Thu, 24 Dec 2009 02:24:06 GMT</pubDate>
			<description><![CDATA[Hello, 
I am using GridViewand bounding values from 2 tables. tbl_login and tbl_register. 
In tbl_register Table the Field is UserName  
In tbl_login Table the Field is Active(yes/no field) 
I used this command to show the fields into the gridview. 
  <div class="codeblock"> <div class="spaced">...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
I am using GridViewand bounding values from 2 tables. tbl_login and tbl_register.<br />
In tbl_register Table the Field is UserName <br />
In tbl_login Table the Field is Active(yes/no field)<br />
I used this command to show the fields into the gridview.<br />
 <pre style="margin:20px; line-height:13px">SELECT tbl_createuser.UserName, tbl_createuser.Role, tbl_login.Active FROM (tbl_createuser INNER JOIN tbl_login ON tbl_createuser.UserID = tbl_login.UserID1) ORDER BY tbl_createuser.RegistrationDate DESC</pre>Initially when the user register, his account is inactive. The admin only wants to make the account active.<br />
After showing the fields in gridview, how to make it editable, initially all the Active Field is unchecked, so when the admin checks it, it must be updated to the database?<br />
Any ideas regarding this?<br />
Thankyou...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum18.html">ASP.NET</category>
			<dc:creator>bharanidharanit</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248647.html</guid>
		</item>
		<item>
			<title>web page Titles</title>
			<link>http://www.daniweb.com/forums/thread248646.html</link>
			<pubDate>Thu, 24 Dec 2009 02:22:58 GMT</pubDate>
			<description><![CDATA[Don't think this is stupid. Very very important. Learn how to entitle/name your webpages. Descriptions too. Learn. Logically name your shit too, very important.]]></description>
			<content:encoded><![CDATA[<div>Don't think this is stupid. Very very important. Learn how to entitle/name your webpages. Descriptions too. Learn. Logically name your shit too, very important.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum45.html">Search Engine Optimization</category>
			<dc:creator>canadafred</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248646.html</guid>
		</item>
		<item>
			<title>Which social media do you stay away from?</title>
			<link>http://www.daniweb.com/forums/thread248645.html</link>
			<pubDate>Thu, 24 Dec 2009 02:21:01 GMT</pubDate>
			<description>I read a LinkedIn post with the same above title and some say Orkut. I say, Myspace. What do you say?</description>
			<content:encoded><![CDATA[<div>I read a LinkedIn post with the same above title and some say Orkut. I say, Myspace. What do you say?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248645.html</guid>
		</item>
		<item>
			<title>Hi there wanderful people</title>
			<link>http://www.daniweb.com/forums/thread248644.html</link>
			<pubDate>Thu, 24 Dec 2009 02:17:02 GMT</pubDate>
			<description>Hi people just call me Kak. I am a student studying Information Systems in Divine Word University Madang, Papua New Guinea. I found this place a few weeks ago while looking for a few vb tips and saw a lot more other helpful information so I decided to join. 
 
Nice to meet you all.</description>
			<content:encoded><![CDATA[<div>Hi people just call me Kak. I am a student studying Information Systems in Divine Word University Madang, Papua New Guinea. I found this place a few weeks ago while looking for a few vb tips and saw a lot more other helpful information so I decided to join.<br />
<br />
Nice to meet you all.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum165.html">Community Introductions</category>
			<dc:creator>kak_kulubob</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248644.html</guid>
		</item>
		<item>
			<title>Do you use Social Media for Research?</title>
			<link>http://www.daniweb.com/forums/thread248643.html</link>
			<pubDate>Thu, 24 Dec 2009 02:14:40 GMT</pubDate>
			<description>Whenever I am trying to assess the popularity of a topic, I may go to YouTube or Facebook to see if I find any user generated content on it. So other than using social media for this type of research, how else have you used it for gathering insights?</description>
			<content:encoded><![CDATA[<div>Whenever I am trying to assess the popularity of a topic, I may go to YouTube or Facebook to see if I find any user generated content on it. So other than using social media for this type of research, how else have you used it for gathering insights?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248643.html</guid>
		</item>
		<item>
			<title>Verifying DMI pool...sucess! Hang</title>
			<link>http://www.daniweb.com/forums/thread248642.html</link>
			<pubDate>Thu, 24 Dec 2009 02:11:23 GMT</pubDate>
			<description>Details 
 
1 PATA Hard Drive: Western Digital 
1 SATA Hard Drive: Western Digital 
 
Gigabyte Motherboard (AMD2 Socket) 
SATA DVD Drive. 
 
Problem:</description>
			<content:encoded><![CDATA[<div>Details<br />
<br />
1 PATA Hard Drive: Western Digital<br />
1 SATA Hard Drive: Western Digital<br />
<br />
Gigabyte Motherboard (AMD2 Socket)<br />
SATA DVD Drive.<br />
<br />
Problem:<br />
<br />
When I boot up the computer, it takes forever to detect IDE devices. Then when it finally does, it sucessfully detects the DVD drive. But gives an<br />
<br />
IDE Channel 2:          <br />
instead of <br />
IDE Channel 2: None<br />
<br />
Which to me indicates that it is not correctly detecting the SATA hard drive which has the OS on it (XP) It then moves to the device list stage, and tries to Update the DMI, and apparently succeeds.<br />
<br />
Verifying DMI Pool Data ....................<br />
K8 NPT Data Change...Update new data to DMI! Update Sucess.<br />
<br />
It then gives me a Disk Boot Failure.<br />
<br />
Measures taken:<br />
<br />
Removed DVD Connections, and left only the SATA drive in. Which sucessfully booted Once, then the problem returned. <br />
<br />
Booted up with a Ubuntu CD in the DVD tray which is sucessful and used it to test the memory which checked out. Ran Ubuntu for a while off the DVD with no problems.<br />
<br />
Changed the boot disk out for a known good one (PATA), connected to the computer which then stops hanging after the DMI issue but goes into a boot loop. When used with a different Motherboard the HDD works fine.<br />
<br />
Personal Conclusions:<br />
<br />
I do not have a lot of experience in this particular field, but from this I am willing to guess that the issue is on the Motherboard, however I do not have another SATA hard drive to eliminate that possibility.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum104.html">Motherboards, CPUs and RAM</category>
			<dc:creator>Angothoron</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248642.html</guid>
		</item>
		<item>
			<title>Code Snippet Car racing in turbo C</title>
			<link>http://www.daniweb.com/code/snippet248641.html</link>
			<pubDate>Thu, 24 Dec 2009 02:04:33 GMT</pubDate>
			<description>Source code implemented by  
 
*Niyas C 
S2C 
PPMHSS Kottukkara 
Kondotty 
Malappuram 
Kerala St 
India*</description>
			<content:encoded><![CDATA[<div>Source code implemented by <br />
<br />
<span style="font-weight:bold">Niyas C<br />
S2C<br />
PPMHSS Kottukkara<br />
Kondotty<br />
Malappuram<br />
Kerala St<br />
India</span></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>niyasc</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248641.html</guid>
		</item>
		<item>
			<title>Search Engine links in Internet Explorer redirecting virus</title>
			<link>http://www.daniweb.com/forums/thread248640.html</link>
			<pubDate>Thu, 24 Dec 2009 02:03:28 GMT</pubDate>
			<description>Hi, I am having a problem with IE. Whenever I use google or any search engine, I am redirected to various websites instead of the ones I linked to.  I scanned my computer using AVG and it removed a bunch of trojans. I also used Malware bytes and it removed some other infections, but the false links...</description>
			<content:encoded><![CDATA[<div>Hi, I am having a problem with IE. Whenever I use google or any search engine, I am redirected to various websites instead of the ones I linked to.  I scanned my computer using AVG and it removed a bunch of trojans. I also used Malware bytes and it removed some other infections, but the false links are still there. I uninstalled IE8 with no change. I installed Mozilla and it doesn't have the link problem so it has something to do with IE. I posted my Hackthis log in hopes someone can see something that I am not.<br />
Thanks<br />
<br />
Logfile of Trend Micro HijackThis v2.0.3 (BETA)<br />
Scan saved at 2:05:47 AM, on 12/24/2009<br />
Platform: Windows Vista SP2 (WinNT 6.00.1906)<br />
MSIE: Internet Explorer v7.00 (7.00.6002.18005)<br />
Boot mode: Normal<br />
<br />
Running processes:<br />
C:\Windows\system32\taskeng.exe<br />
C:\Windows\system32\Dwm.exe<br />
C:\Windows\Explorer.EXE<br />
C:\Windows\System32\igfxtray.exe<br />
C:\Windows\System32\hkcmd.exe<br />
C:\Windows\System32\igfxpers.exe<br />
C:\Program Files\AVG\AVG9\avgtray.exe<br />
C:\Program Files\Common Files\PC Tools\sMonitor\SSDMonitor.exe<br />
C:\Program Files\Yahoo!\Common\YMailAdvisor.exe<br />
C:\Program Files\Yahoo!\Search Protection\SearchProtection.exe<br />
C:\Program Files\Java\jre6\bin\jusched.exe<br />
C:\Program Files\Windows Sidebar\sidebar.exe<br />
C:\Program Files\Registry Mechanic\RMTray.exe<br />
C:\Windows\ehome\ehtray.exe<br />
C:\Windows\ehome\ehmsas.exe<br />
C:\Windows\system32\wuauclt.exe<br />
C:\Windows\system32\taskeng.exe<br />
C:\Program Files\Mozilla Firefox\firefox.exe<br />
C:\Windows\system32\SearchFilterHost.exe<br />
C:\Program Files\TrendMicro\HiJackThis\HiJackThis.exe<br />
<br />
R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Search Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://m.www.yahoo.com/" target="_blank">http://m.www.yahoo.com/</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,SearchAssistant = <br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Search,CustomizeSearch = <br />
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = *.local<br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Toolbar,LinksFolderName = <br />
R3 - URLSearchHook: AVG Security Toolbar BHO - {A3BC75A2-1F87-4686-AA43-5347D756017C} - C:\Program Files\AVG\AVG9\Toolbar\IEToolbar.dll<br />
R3 - URLSearchHook: (no name) - *{CFBFAE00-17A6-11D0-99CB-00C04FD64497} - (no file)<br />
O1 - Hosts: ::1 localhost<br />
O2 - BHO: &amp;Yahoo! Toolbar Helper - {02478D38-C3F9-4efb-9B51-7695ECA05670} - C:\Program Files\Yahoo!\Companion\Installs\cpn\yt.dll<br />
O2 - BHO: AcroIEHelperStub - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll<br />
O2 - BHO: WormRadar.com IESiteBlocker.NavFilter - {3CA2F312-6F6E-4B53-A66E-4E65E497C8C0} - C:\Program Files\AVG\AVG9\avgssie.dll<br />
O2 - BHO: AVG Security Toolbar BHO - {A3BC75A2-1F87-4686-AA43-5347D756017C} - C:\Program Files\AVG\AVG9\Toolbar\IEToolbar.dll<br />
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br />
O2 - BHO: SingleInstance Class - {FDAD4DA1-61A2-4FD8-9C17-86F7AC245081} - C:\Program Files\Yahoo!\Companion\Installs\cpn\YTSingleInstance.dll<br />
O3 - Toolbar: AVG Security Toolbar - {CCC7A320-B3CA-4199-B1A6-9F516DD69829} - C:\Program Files\AVG\AVG9\Toolbar\IEToolbar.dll<br />
O3 - Toolbar: Yahoo! Toolbar - {EF99BD32-C1FB-11D2-892F-0090271D4F88} - C:\Program Files\Yahoo!\Companion\Installs\cpn\yt.dll<br />
O4 - HKLM\..\Run: [Windows Defender] %ProgramFiles%\Windows Defender\MSASCui.exe -hide<br />
O4 - HKLM\..\Run: [IgfxTray] C:\Windows\system32\igfxtray.exe<br />
O4 - HKLM\..\Run: [HotKeysCmds] C:\Windows\system32\hkcmd.exe<br />
O4 - HKLM\..\Run: [Persistence] C:\Windows\system32\igfxpers.exe<br />
O4 - HKLM\..\Run: [Adobe Reader Speed Launcher] &quot;C:\Program Files\Adobe\Reader 9.0\Reader\Reader_sl.exe&quot;<br />
O4 - HKLM\..\Run: [Adobe ARM] &quot;C:\Program Files\Common Files\Adobe\ARM\1.0\AdobeARM.exe&quot;<br />
O4 - HKLM\..\Run: [AVG9_TRAY] C:\PROGRA~1\AVG\AVG9\avgtray.exe<br />
O4 - HKLM\..\Run: [SSDMonitor] C:\Program Files\Common Files\PC Tools\sMonitor\SSDMonitor.exe<br />
O4 - HKLM\..\Run: [YMailAdvisor] &quot;C:\Program Files\Yahoo!\Common\YMailAdvisor.exe&quot;<br />
O4 - HKLM\..\Run: [YSearchProtection] &quot;C:\Program Files\Yahoo!\Search Protection\SearchProtection.exe&quot;<br />
O4 - HKLM\..\Run: [SunJavaUpdateSched] &quot;C:\Program Files\Java\jre6\bin\jusched.exe&quot;<br />
O4 - HKLM\..\RunOnce: [Uninstall Adobe Download Manager] &quot;C:\Windows\system32\rundll32.exe&quot; &quot;C:\Program Files\NOS\bin\getPlus_Helper.dll&quot;,Uninstall /IE2883E8F-472F-4fb0-9522-AC9BF37916A7 /Get1noarp<br />
O4 - HKCU\..\Run: [Sidebar] C:\Program Files\Windows Sidebar\sidebar.exe /autoRun<br />
O4 - HKCU\..\Run: [RegistryMechanic] C:\Program Files\Registry Mechanic\RMTray.exe /H<br />
O4 - HKCU\..\Run: [Search Protection] C:\Program Files\Yahoo!\Search Protection\SearchProtection.exe<br />
O4 - HKCU\..\Run: [ehTray.exe] C:\Windows\ehome\ehTray.exe<br />
O4 - HKUS\S-1-5-19\..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /detectMem (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-19\..\Run: [WindowsWelcomeCenter] rundll32.exe oobefldr.dll,ShowWelcomeCenter (User 'LOCAL SERVICE')<br />
O4 - HKUS\S-1-5-20\..\Run: [Sidebar] %ProgramFiles%\Windows Sidebar\Sidebar.exe /detectMem (User 'NETWORK SERVICE')<br />
O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre6\bin\ssv.dll<br />
O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre6\bin\ssv.dll<br />
O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\OFFICE11\REFIEBAR.DLL<br />
O13 - Gopher Prefix: <br />
O16 - DPF: {30528230-99f7-4bb4-88d8-fa1d4f56a2ab} (Installation Support) - C:\Program Files\Yahoo!\Common\Yinsthelper.dll<br />
O16 - DPF: {8100D56A-5661-482C-BEE8-AFECE305D968} (Facebook Photo Uploader 5 Control) - http://upload.facebook.com/controls/2009.07.28_v5.5.8.1/FacebookPhotoUploader55.cab<br />
O16 - DPF: {D27CDB6E-AE6D-11CF-96B8-444553540000} (Shockwave Flash Object) - http://fpdownload2.macromedia.com/get/shockwave/cabs/flash/swflash.cab<br />
O16 - DPF: {E2883E8F-472F-4FB0-9522-AC9BF37916A7} (get_atlcom Class) - http://platformdl.adobe.com/NOS/getPlusPlus/1.6/gp.cab<br />
O18 - Protocol: linkscanner - {F274614C-63F8-47D5-A4D1-FBDDE494F8D1} - C:\Program Files\AVG\AVG9\avgpp.dll<br />
O20 - AppInit_DLLs: avgrsstx.dll<br />
O22 - SharedTaskScheduler: Component Categories cache daemon - {8C7461EF-2B13-11d2-BE35-3078302C2030} - C:\Windows\system32\browseui.dll<br />
O23 - Service: Apple Mobile Device - Apple Inc. - C:\Program Files\Common Files\Apple\Mobile Device Support\bin\AppleMobileDeviceService.exe<br />
O23 - Service: AVG E-mail Scanner (avg9emc) - AVG Technologies CZ, s.r.o. - C:\Program Files\AVG\AVG9\avgemc.exe<br />
O23 - Service: AVG WatchDog (avg9wd) - AVG Technologies CZ, s.r.o. - C:\Program Files\AVG\AVG9\avgwdsvc.exe<br />
O23 - Service: AVG9IDSAgent (AVGIDSAgent) - AVG Technologies CZ, s.r.o. - C:\Program Files\AVG\AVG9\Identity Protection\Agent\Bin\AVGIDSAgent.exe<br />
O23 - Service: Bonjour Service - Apple Inc. - C:\Program Files\Bonjour\mDNSResponder.exe<br />
O23 - Service: iPod Service - Apple Inc. - C:\Program Files\iPod\bin\iPodService.exe<br />
O23 - Service: PC Tools Startup and Shutdown Monitor service (PCToolsSSDMonitorSvc) - Unknown owner - C:\Program Files\Common Files\PC Tools\sMonitor\StartManSvc.exe<br />
O23 - Service: Yahoo! Updater (YahooAUService) - Yahoo! Inc. - C:\Program Files\Yahoo!\SoftwareUpdate\YahooAUService.exe<br />
<br />
--<br />
End of file - 7346 bytes</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum64.html">Viruses, Spyware and other Nasties</category>
			<dc:creator>Ponyboy76</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248640.html</guid>
		</item>
		<item>
			<title>What is one thing Social Media could not substitute?</title>
			<link>http://www.daniweb.com/forums/thread248639.html</link>
			<pubDate>Thu, 24 Dec 2009 02:02:22 GMT</pubDate>
			<description><![CDATA[It now seems that there is a new app or tool on social media that will help resolve everyday's communication and issues. I have seen different communities rising up every day, especially when I read killer startup or silicon alley. So other than us still stuck brushing our teeth, what other...]]></description>
			<content:encoded><![CDATA[<div>It now seems that there is a new app or tool on social media that will help resolve everyday's communication and issues. I have seen different communities rising up every day, especially when I read killer startup or silicon alley. So other than us still stuck brushing our teeth, what other activity has social media had no effect?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248639.html</guid>
		</item>
		<item>
			<title>Advice to improve code.</title>
			<link>http://www.daniweb.com/forums/thread248638.html</link>
			<pubDate>Thu, 24 Dec 2009 02:00:11 GMT</pubDate>
			<description>Hai, 
This is a source code written in turbo c for car racing game as a part of my higher secondary project. 
May I get some advices to improve it? 
1.Did I use the real method to constitute motion in c? 
2.How can I include sound in c? 
{ Function sound() is not working .. I think it is due to...</description>
			<content:encoded><![CDATA[<div>Hai,<br />
This is a source code written in turbo c for car racing game as a part of my higher secondary project.<br />
May I get some advices to improve it?<br />
1.Did I use the real method to constitute motion in c?<br />
2.How can I include sound in c?<br />
{ Function sound() is not working .. I think it is due to absence of speaker in my  cabinet.. Can I use other sound functions.}<br />
3.Which is the latest and simple compact C\C++ compailor?<br />
4.Now what is the commercial use of C\C++ language?<br />
5.Which compailor can I use in free Operating systems such as ubuntu,kubuntu, linux?<br />
<br />
I expect answer for these question...<br />
<br />
<br />
<br />
<br />
<br />
<br />
 <pre style="margin:20px; line-height:13px">#include&lt;conio.h&gt;<br />
#include&lt;process.h&gt;<br />
#include&lt;stdio.h&gt;<br />
#include&lt;dos.h&gt;<br />
#include&lt;stdlib.h&gt;<br />
#include&lt;fstream.h&gt;<br />
#include&lt;graphics.h&gt;<br />
#define LEFT 75<br />
#define RIGHT 77<br />
#define UP 72<br />
#define DOWN 80<br />
#define ENTER 13<br />
class CAR<br />
{<br />
public:<br />
int vel,cp,init,op1,op2,op3,level;<br />
long score;<br />
long lev_score[5];<br />
char player[20];<br />
CAR::CAR()<br />
{<br />
level=1;<br />
vel=1;<br />
cp=300;<br />
init=0;<br />
op1=0;<br />
op2=-20;<br />
op3=-40;<br />
score=0;<br />
lev_score[0]=10000;lev_score[1]=30000;lev_score[2]=60000;lev_score[3]=100000;lev_score[4]=150000;<br />
}<br />
}car;<br />
<br />
int randx(void)<br />
{<br />
int x=random(56*8);<br />
if(x&lt;22*8)<br />
{<br />
x=x+(22*8);<br />
}<br />
return(x);<br />
}<br />
<br />
void right()<br />
{<br />
if(car.cp&lt;420)<br />
{<br />
car.cp+=10;<br />
}<br />
return;<br />
}<br />
void left()<br />
{<br />
if(car.cp&gt;180)<br />
{<br />
car.cp-=10;<br />
}<br />
return;<br />
}<br />
void score_store()<br />
{<br />
cleardevice();<br />
setcolor(4);<br />
settextstyle(2,0,6);<br />
outtextxy(10,0,&quot;Your score is&quot;);<br />
gotoxy(20,2);cout&lt;&lt;car.score;<br />
outtextxy(10,40,&quot;Enter your name to store :&quot;);gotoxy(35,4);<br />
<br />
gets(car.player);<br />
ofstream score;<br />
score.open(&quot;score.dat&quot;,ios::app);score&lt;&lt;&quot;\n&quot;;<br />
score.write(car.player,20);score&lt;&lt;car.score;<br />
score.close();<br />
}<br />
void disp_score()<br />
{<br />
cleardevice();<br />
setcolor(5);<br />
settextstyle(2,0,9);<br />
outtextxy(200,20,&quot;SCORE BOARD&quot;);<br />
ifstream score(&quot;score.dat&quot;);<br />
char ch; int i=0;gotoxy(1,5);<br />
while(score.get(ch))<br />
{<br />
score.seekg(i,ios::beg);<br />
score.get(ch);<br />
cout&lt;&lt;ch;<br />
i++;<br />
}<br />
getch();<br />
return;<br />
}<br />
void bgmove()<br />
{<br />
if(car.init&gt;5)<br />
{<br />
car.init=1;<br />
}<br />
else<br />
{<br />
car.init+=car.vel;<br />
}<br />
<br />
setcolor(RED);<br />
setfillstyle(SOLID_FILL,RED);<br />
sector(car.cp+20,330,0,180,20,30);<br />
setfillstyle(SOLID_FILL,YELLOW);<br />
bar3d(car.cp,333,car.cp+37,360,4,4);<br />
sector(car.cp+20,362,180,360,20,10);<br />
<br />
for(int i=car.init;i&lt;70;i+=5)<br />
{<br />
setcolor(GREEN);<br />
setfillstyle(9,GREEN);<br />
bar(16*8,i*8,20*8,(i+2)*8);<br />
bar(60*8,i*8,64*8,(i+2)*8);<br />
<br />
}<br />
return;<br />
}<br />
void opp1(int x1)<br />
{<br />
if(car.op1&lt;600)<br />
{<br />
car.op1+=10;<br />
setfillstyle(1,RED);<br />
bar3d(x1,car.op1,x1+30,car.op1+30,2,3);<br />
}<br />
else<br />
{<br />
car.op1=0;<br />
}<br />
return;<br />
}<br />
void opp2(int x2)<br />
{<br />
if(car.op2&lt;600)<br />
{<br />
car.op2+=10;<br />
setfillstyle(1,YELLOW);<br />
bar3d(x2,car.op2,x2+30,car.op2+30,2,3);<br />
}<br />
else<br />
{<br />
car.op2=0;<br />
}<br />
return;<br />
}<br />
void opp3(int x3)<br />
{<br />
if(car.op3&lt;600)<br />
{<br />
car.op3+=10;<br />
setfillstyle(1,BLUE);<br />
bar3d(x3,car.op3,x3+30,car.op3+30,2,3);<br />
}<br />
else<br />
{<br />
car.op3=0;<br />
}<br />
return;<br />
}<br />
int check(int x,int op,int cp)<br />
{<br />
int a[31],b[31],c[40],d[50];<br />
for(int i=0;i&lt;30;i++)<br />
{<br />
a[i]=x+i;<br />
}<br />
for(i=0;i&lt;30;i++)<br />
{<br />
b[i]=op+i;<br />
}<br />
for(i=0;i&lt;40;i++)<br />
{<br />
c[i]=cp+i;<br />
}<br />
for(i=0;i&lt;50;i++)<br />
{<br />
d[i]=300+i;<br />
}<br />
for(i=0;i&lt;40;i++)<br />
{<br />
for(int j=0;j&lt;50;j++)<br />
{<br />
for(int k=0;k&lt;30;k++)<br />
{<br />
if(a[k]==c[i]&amp;&amp;b[k]==d[j])<br />
return 1;<br />
}<br />
}<br />
}<br />
return 0;<br />
}<br />
<br />
void logo ()<br />
{<br />
for(int i=1;i&lt;250;i++)<br />
{<br />
<br />
setcolor(YELLOW);setfillstyle(SOLID_FILL,YELLOW);<br />
settextstyle(4,HORIZ_DIR,5);<br />
outtextxy(100,100,&quot;DANGEROUS ROAD&quot;);<br />
outtextxy(200,140,&quot;RACING&quot;);<br />
bar3d(50,200,550,220,10,40);<br />
setcolor(GREEN);<br />
settextstyle(1,HORIZ_DIR,2);<br />
outtextxy(100,400,&quot;LOADING&quot;);setfillstyle(SOLID_FILL,GREEN);<br />
bar(190,400,190+i,420);<br />
delay(25);<br />
}<br />
delay(2000);<br />
cleardevice();<br />
return;<br />
}<br />
<br />
void loss(void)<br />
{<br />
setcolor(10);<br />
settextstyle(2,0,9);<br />
outtextxy(180,150,&quot;ONE CHANCE LOST&quot;);<br />
delay(1000);<br />
return;<br />
}<br />
void over(void)<br />
{<br />
for(int i=1;i&lt;35;i++)<br />
{<br />
cleardevice();delay(20);<br />
settextstyle(1,0,6);setcolor(RED);<br />
outtextxy(150,100,&quot;GAME OVER&quot;);<br />
delay(20);<br />
<br />
}<br />
delay(2000);cleardevice();<br />
score_store();<br />
getch();<br />
return;<br />
}<br />
void score()<br />
{<br />
car.score=car.score+11*car.vel;<br />
setcolor(5);<br />
settextstyle(2,0,6);<br />
outtextxy(530,12,&quot;Score &quot;);<br />
gotoxy(75,2);<br />
cout&lt;&lt;car.score;<br />
return;<br />
}<br />
void win()<br />
{<br />
cleardevice();<br />
for(int k=0;k&lt;2;k++){<br />
for(int i=0;i&lt;15;i++)<br />
{<br />
setcolor(i);<br />
settextstyle(4,0,5);<br />
outtextxy(200,100,&quot;Congrats!!&quot;);<br />
setcolor(i+1);<br />
outtextxy(150,200,&quot;You won the race&quot;);<br />
delay(150);<br />
}<br />
}<br />
delay(3000);<br />
score_store();<br />
return;<br />
}<br />
void level(void)<br />
{<br />
int level=car.level;<br />
if(car.score&gt;car.lev_score[level-1])<br />
{<br />
if(car.level&lt;5)<br />
{<br />
car.level++;<br />
if(car.vel&lt;4)<br />
{<br />
car.vel++;}<br />
cleardevice();<br />
settextstyle(2,0,3);<br />
setcolor(4);<br />
outtextxy(4,12,&quot;Level&quot;);<br />
gotoxy(5,1);<br />
cout&lt;&lt;car.level;<br />
}<br />
else<br />
{win();}}<br />
settextstyle(2,0,6);<br />
setcolor(5);<br />
outtextxy(4,12,&quot;Level&quot;);<br />
gotoxy(8,2);<br />
cout&lt;&lt;car.level;<br />
return;<br />
}<br />
void about()<br />
{<br />
char opt;<br />
while(!kbhit())<br />
{<br />
for(int i=300;i&lt;600;i++)<br />
{<br />
cleardevice();<br />
setcolor(9);<br />
settextstyle(4,0,5);<br />
setfillstyle(9,12);<br />
outtextxy(220,0,&quot;ABOUT&quot;);<br />
bar(220,60,370,62);<br />
settextstyle(2,0,5);<br />
setcolor(2);<br />
outtextxy(20,100,&quot;We had completed our work as a part of our computer science project work.&quot;);<br />
outtextxy(3,115,&quot;We had tried to reduce maximum problems in our program. Eventhough it may &quot;);<br />
outtextxy(3,130,&quot;consist several technical and logical problems.&quot;);<br />
outtextxy(3,165,&quot;WE ARE.........&quot;);<br />
outtextxy(3,180,&quot;Wait a moment to enter menu....&quot;);<br />
setcolor(6);<br />
settextstyle(2,0,6);<br />
outtextxy(600-i,600-i,&quot;Niyas C&quot;);<br />
outtextxy(i-150,215,&quot;Muhammed Dilshad&quot;);<br />
outtextxy(i-30,i-130,&quot;Shafeeq &quot;);<br />
outtextxy(600-i,i-150,&quot;Najah Muhammed&quot;);<br />
outtextxy(350,600-i,&quot;Azharudheen&quot;);<br />
setfillstyle(1,4);<br />
bar3d(180,380,450,460,4,6);<br />
setcolor(1);<br />
settextstyle(2,0,10);<br />
outtextxy(280,380,&quot;S2C&quot;);<br />
outtextxy(215,420,&quot;2009-2010&quot;);<br />
<br />
delay(60);<br />
<br />
}<br />
}<br />
getch();<br />
return;<br />
}<br />
int play(void)<br />
{<br />
int life=3,m,x1,x2,x3,s;<br />
re:<br />
while(life)<br />
{<br />
cleardevice();<br />
if(car.op1==0)<br />
{<br />
x1=randx();<br />
car.op1++;<br />
}<br />
else<br />
{<br />
opp1(x1);<br />
}<br />
if(car.op2==0)<br />
{<br />
x2=randx();<br />
car.op2++;<br />
}<br />
else if(car.op2&lt;1)<br />
{car.op2++;}<br />
else<br />
{<br />
opp2(x2);<br />
}<br />
if(car.op3==0)<br />
{<br />
x3=randx();<br />
car.op3++;<br />
}<br />
else if(car.op3&lt;1)<br />
{car.op3++;}<br />
else<br />
{<br />
opp3(x3);<br />
}<br />
setcolor(10);<br />
setfillstyle(0,0);<br />
bar3d(0,0,80,70,4,3);<br />
bgmove();<br />
level();<br />
score();<br />
settextstyle(2,0,6);<br />
setcolor(5);<br />
outtextxy(4,44,&quot;Life&quot;);<br />
gotoxy(8,4);cout&lt;&lt;life;<br />
if(check(x2,car.op2,car.cp)||check(x1,car.op1,car.cp)||check(x3,car.op3,car.cp))<br />
{<br />
loss();<br />
life--;<br />
<br />
if(life==0)<br />
{<br />
over();<br />
}<br />
car.op1=1;<br />
car.op2=-16;<br />
car.op3=-32;<br />
goto re;<br />
}<br />
if(kbhit())<br />
{<br />
m=getch();<br />
switch(m)<br />
{<br />
case LEFT: left();<br />
&nbsp; &nbsp; &nbsp; &nbsp;  break;<br />
case RIGHT: right();<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case 'q':exit(0);<br />
<br />
}<br />
}<br />
else{<br />
delay(100); }<br />
}<br />
<br />
getch();<br />
return(0);<br />
}<br />
void help()<br />
{<br />
cleardevice();<br />
settextstyle(4,0,6);setcolor(13);<br />
outtextxy(200,10,&quot;HELP&quot;);textcolor(YELLOW);gotoxy(3,6);<br />
cout&lt;&lt;&quot;\n\n\n\n\n\n\nDPR (Dangerous Road Racing is a simple game in which you have to lead a car by avoiding blocks on road.\nYou have to use the following keys to controll the car\n\n-&gt;UP\t--\tForward movement\n-&gt;LEFT\t--\tLeftside movement\n-&gt;RIGHT\t--\tRightside movement\n-&gt;q\t--\tExit from game at any time\n&quot;;<br />
getch();<br />
return;<br />
}<br />
void menu()<br />
{<br />
int s=1,t=0,a,p=140;<br />
do<br />
{<br />
do<br />
{<br />
cleardevice();<br />
setcolor(YELLOW);<br />
settextstyle(1,0,4);<br />
outtextxy(230,30,&quot;MENU&quot;);<br />
setfillstyle(1,2);<br />
bar(140,80,400,82);<br />
settextstyle(1,0,1);<br />
setcolor(10);<br />
outtextxy(220,137,&quot;PLAY GAME&quot;);<br />
outtextxy(220,167,&quot;SCORES&quot;);<br />
outtextxy(220,197,&quot;HELP&quot;);<br />
outtextxy(220,227,&quot;ABOUT&quot;);<br />
outtextxy(220,257,&quot;EXIT&quot;);<br />
setcolor(RED);<br />
rectangle(200,p,350,p+20);<br />
a=getch();<br />
switch(a)<br />
{<br />
case UP:if(p&gt;140)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {p-=30;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  s--;}<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case DOWN:if(p&lt;260)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {p+=30;<br />
&nbsp; &nbsp; &nbsp; &nbsp; s++;};<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case ENTER:a=1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
default:break;<br />
}<br />
}while(a!=1);<br />
switch(s)<br />
{<br />
case 1:play();<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case 2:disp_score();<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case 3:help();<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case 4:about();<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
case 5:exit(0);<br />
default:cprintf(&quot;Invalid choice&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; break;<br />
}<br />
}while(t==0);<br />
getch();<br />
}<br />
void main()<br />
{<br />
int gdriver=DETECT,gmode,errorcode;<br />
initgraph(&amp;gdriver,&amp;gmode,&quot;&quot;);cleardevice();<br />
logo();<br />
menu();<br />
closegraph();<br />
}</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>niyasc</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248638.html</guid>
		</item>
		<item>
			<title><![CDATA['Lock' logged in time.]]></title>
			<link>http://www.daniweb.com/forums/thread248636.html</link>
			<pubDate>Thu, 24 Dec 2009 01:46:35 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I am tryin to store the time a user logged in into a session.  However everytime the user logged out, the time stored is the logged out time. Can someone advise me how i should done it in order to store the time the user logged in? 
 
Thanks 
 
  <div class="codeblock"> <div class="spaced">...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am tryin to store the time a user logged in into a session.  However everytime the user logged out, the time stored is the logged out time. Can someone advise me how i should done it in order to store the time the user logged in?<br />
<br />
Thanks<br />
<br />
 <pre style="margin:20px; line-height:13px">$date = date('Y-m-d H:i:s');</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>futhonguy</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248636.html</guid>
		</item>
		<item>
			<title>Measuring Facebook Page</title>
			<link>http://www.daniweb.com/forums/thread248635.html</link>
			<pubDate>Thu, 24 Dec 2009 01:41:29 GMT</pubDate>
			<description>Almost all the businesses I know what to create a Facebook page but I do wonder, what happens next? Does the business actually measure the results of having the Facebook Page, both on Facebook and ROI seen through additional business transactions or sales?  
Did the business use a third party app...</description>
			<content:encoded><![CDATA[<div>Almost all the businesses I know what to create a Facebook page but I do wonder, what happens next? Does the business actually measure the results of having the Facebook Page, both on Facebook and ROI seen through additional business transactions or sales? <br />
Did the business use a third party app to measure results or was Facebook Insights enough?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248635.html</guid>
		</item>
		<item>
			<title>Santa Visits and brings Double Bandwidth, Double Disk Space, 50% off, Free cPanel.</title>
			<link>http://www.daniweb.com/forums/thread248634.html</link>
			<pubDate>Thu, 24 Dec 2009 01:34:53 GMT</pubDate>
			<description>HostedFX provides quality hosting at an affordable price since 2004. Our services are one of the top in the webhosting business. Whether you want to host your business or personal website HostedFX have what you need.  
 
*Holidays Specials* 
 
USE COUPON *50VPS* On package *VPS Starter* and get...</description>
			<content:encoded><![CDATA[<div>HostedFX provides quality hosting at an affordable price since 2004. Our services are one of the top in the webhosting business. Whether you want to host your business or personal website HostedFX have what you need. <br />
<br />
<span style="font-weight:bold">Holidays Specials</span><br />
<br />
USE COUPON <span style="font-weight:bold">50VPS</span> On package <span style="font-weight:bold">VPS Starter</span> and get you're first month 50% off<br />
USE COUPON <span style="font-weight:bold">DHDBW</span> On package <span style="font-weight:bold">VPS Cluster Starter</span> and get DOUBLE BANDWIDTH, DISK SPACE, AND FIRST MONTH 50% OFF<br />
USE COUPON <span style="font-weight:bold">DHDBWCPANEL</span> On package <span style="font-weight:bold">VPS Cluster SMB</span> and get DOUBLE BANDWIDTH , DISK SPACE, a FREE cPanel, AND FIRST MONTH 50% OFF<br />
<br />
<br />
<br />
<br />
<br />
<span style="color:green"><span style="font-weight:bold">VPS Hosting  Plans</span></span><br />
<br />
<span style="color:green"><span style="font-weight:bold">VPS Starter</span></span> <span style="color:green">* USE COUPON 50VPS and get you're first month 50% off*</span><br />
<br />
<span style="color:green">// </span> 20,000 MB Space <br />
<span style="color:green">// </span> 400 GB Monthly bandwidth<br />
<span style="color:green">// </span> 384 MB Guaranteed RAM <br />
<span style="color:green">// </span> 16 GB Maximum Burstable RAM <br />
<span style="color:green">// </span> 2 Dedicated IP's<br />
<span style="color:green">// </span> Price: $19.99 per month <span style="font-weight:bold"><span style="color:green">(50% off with coupon listed above)</span></span> | $215.88 per year <br />
<a rel="nofollow" class="t" href="https://clients.hostedfx.com/cart.php?a=add&amp;pid=25" target="_blank"><span style="font-weight:bold">Order Now</span></a> <br />
<br />
<span style="color:green"><span style="font-weight:bold">VPS Cluster Starter</span></span> <span style="color:green">* USE COUPON DHDBW and get DOUBLE BANDWIDTH, DISK SPACE, AND FIRST MONTH 50% OFF</span><br />
<br />
<span style="color:green">// </span> 40,000 MB Space <span style="font-weight:bold"><span style="color:green"> DOUBLE TO 80,000 MB SPACE </span></span><br />
<span style="color:green">// </span> 1,000 GB Monthly bandwidth <span style="font-weight:bold"><span style="color:green"> DOUBLE TO 2,000 GB bandwidth</span></span><br />
<span style="color:green">// </span> 768 MB Guaranteed RAM <br />
<span style="color:green">// </span> 36 GB Maximum Burstable RAM <br />
<span style="color:green">// </span> 4 Dedicated IP's<br />
<span style="color:green">// </span> Price: $39.99 per month <span style="font-weight:bold"><span style="color:green">(50% off with coupon listed above)</span></span> | $383.88 per year <br />
<a rel="nofollow" class="t" href="https://clients.hostedfx.com/cart.php?a=add&amp;pid=26" target="_blank"><span style="font-weight:bold">Order Now</span></a> <br />
<br />
<span style="color:green"><span style="font-weight:bold">VPS Cluster SMB</span></span> <span style="color:green">* USE COUPON DHDBWCPANEL and get DOUBLE BANDWIDTH , DISK SPACE, a FREE cPanel, AND FIRST MONTH 50% OFF*</span><br />
<br />
<span style="color:green">// </span> 80,000 MB Space <span style="font-weight:bold"><span style="color:green"> DOUBLE TO 160,000 MB SPACE </span></span><br />
<span style="color:green">// </span> 2,000 GB Monthly bandwidth <span style="font-weight:bold"><span style="color:green"> DOUBLE TO 4,000 GB bandwidth</span></span><br />
<span style="color:green">// </span> Free cPanel <span style="font-weight:bold"><span style="color:green">(DO NOT PICK CPANEL AS AN ADDON ITS ALREADY ADDED TO THE ORDER)</span></span><br />
<span style="color:green">// </span> 1536 MB Guaranteed RAM <br />
<span style="color:green">// </span> 36 GB Maximum Burstable RAM <br />
<span style="color:green">// </span> 6 Dedicated IP's<br />
<span style="color:green">// </span> Price: $79.99 per month <span style="font-weight:bold"><span style="color:green">(50% off with coupon listed above)</span></span> | $767.88 per year <br />
<a rel="nofollow" class="t" href="https://clients.hostedfx.com/cart.php?a=add&amp;pid=27" target="_blank"><span style="font-weight:bold">Order Now</span></a> <br />
<br />
<span style="font-weight:bold"><span style="color:green">[+]</span>Features That Comes With Every VPS Plan<span style="color:green">[+]</span></span><br />
<br />
<span style="color:green">// </span> Unlimited Hosted Domain<br />
<span style="color:green">// </span> Root Access<br />
<span style="color:green">// </span> Virtuozzo 4 Software<br />
<span style="color:green">// </span> VZ Power Control Panel<br />
<span style="color:green">// </span> Auto Restart (IF VPS Went down) (99% Uptime guaranteed)<br />
<span style="color:green">// </span> 24/7 Live Chat/ Ticket Support/ Email Support<br />
<span style="color:green">// </span> HighEnd Business Class Dell Servers <br />
<span style="color:green">// </span> HighEnd Business Class Cluster/Cloud &amp; SAN Infrastructure<br />
<span style="color:green">// </span> HighEnd Distributed EqualLogic Storage Area Network<br />
<br />
<span style="font-weight:bold"><span style="color:green">[+]</span>Available Control Panel<span style="color:green">[+]</span></span><br />
<br />
<span style="color:green">// </span> Webmin : FREE<br />
<span style="color:green">// </span> cPanel/WHM: $12.00/monthly<br />
<span style="color:green">// </span> Plesk 9- 100 Domains: $8.00/monthly<br />
<span style="color:green">// </span> Plesk 9- Unlimited. Domains: $15.00/monthly<br />
<span style="color:green">// </span> Plesk 9- Plus Unlimited. Domains: $22.00/monthly<br />
<span style="color:green">// </span> Plesk Billing / Plesk Expand / Plesk Powerpack : Contact Us For Price<br />
<br />
<span style="font-weight:bold"><span style="color:green">[+]</span>OS Available<span style="color:green">[+]</span></span><br />
<br />
<span style="color:green">// </span> Centos 5 <br />
<span style="color:green">// </span> Debian<br />
<span style="color:green">// </span> OpenSuse<br />
<br />
<span style="font-weight:bold"><span style="color:green">[+]</span>Addons<span style="color:green">[+]</span></span><br />
<br />
<span style="color:green">// </span> Fantastico (cPanel Only): $5.00/month<br />
<span style="color:green">// </span> SSL Secure Certificate : $49.95/month<br />
Automatic Daily Full Server-Snapshot (Backup) : VPS Starter: $9.99/month  |  VPS Cluster Start: $20.00/month  | VPS Cluster SMB: $40.00/month<br />
<br />
<br />
<a rel="nofollow" class="t" href="http://www.hostedfx.com/testimonials/" target="_blank">See what our customers have to say about us.</a><br />
<a rel="nofollow" class="t" href="http://www.hostedfx.com/why-us/" target="_blank">Why Pick Us.</a><br />
<br />
To contact us please send an email to <a href="mailto:support@hostedfx.com">support@hostedfx.com</a> or use our  <a rel="nofollow" class="t" href="https://clients.hostedfx.com/contact.php" target="_blank">contact-us</a> page.<br />
<br />
<br />
**We accept major credit cards and Paypal**<br />
** Custom plans are available just <a rel="nofollow" class="t" href="https://clients.hostedfx.com/contact.php" target="_blank">contact-us</a>  ** </div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum154.html">Web Hosting Deals</category>
			<dc:creator>host pro</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248634.html</guid>
		</item>
		<item>
			<title>Real CEOs Dont Send Email Holiday Cards</title>
			<link>http://www.daniweb.com/forums/thread248632.html</link>
			<pubDate>Thu, 24 Dec 2009 01:31:06 GMT</pubDate>
			<description>I just read on a blog that Real CEOs dont send email holiday cards. As a CEO of my own company, I prefer to send gift packages but I do argue with the blogger that emails do take more than 3 seconds to create it.  
...</description>
			<content:encoded><![CDATA[<div>I just read on a blog that Real CEOs dont send email holiday cards. As a CEO of my own company, I prefer to send gift packages but I do argue with the blogger that emails do take more than 3 seconds to create it. <br />
<br />
<a rel="nofollow" class="t" href="http://www.taariqlewis.com/articles/19363/real-ceos-dont-send-electronic-holiday-greeting-ca/" target="_blank">http://www.taariqlewis.com/articles/...y-greeting-ca/</a><br />
<br />
So what do you think?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248632.html</guid>
		</item>
		<item>
			<title>Creating a mobile site</title>
			<link>http://www.daniweb.com/forums/thread248631.html</link>
			<pubDate>Thu, 24 Dec 2009 01:25:14 GMT</pubDate>
			<description>With the increase of smart phones, getting a mobile site for a business may be the next smart option. From a social media angle, having a mobile site may be more luring for the tweeters to view it on their smart phone. So when you are creating a mobile site, what other things do you keep in mind to...</description>
			<content:encoded><![CDATA[<div>With the increase of smart phones, getting a mobile site for a business may be the next smart option. From a social media angle, having a mobile site may be more luring for the tweeters to view it on their smart phone. So when you are creating a mobile site, what other things do you keep in mind to make it more enticable for the Tweeters and FB updates?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>InsightsDigital</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248631.html</guid>
		</item>
		<item>
			<title>How to Convert Video to AVI/MP4/MPG/MOD/MOV/MKV/WMV/DivX/XviD</title>
			<link>http://www.daniweb.com/forums/thread248630.html</link>
			<pubDate>Thu, 24 Dec 2009 01:21:23 GMT</pubDate>
			<description>I believe you all have at least one of these Sansa, iPod, iPhone, Walkman, Creative Zen, Apple TV, Nokia, Zune, PSP. Actually these portable devices cannot accept all formats of video, so lots of wonderful video can only be enjoyed on computer and it is so inconvenient.  
It doesn’t matter. It is...</description>
			<content:encoded><![CDATA[<div>I believe you all have at least one of these Sansa, iPod, iPhone, Walkman, Creative Zen, Apple TV, Nokia, Zune, PSP. Actually these portable devices cannot accept all formats of video, so lots of wonderful video can only be enjoyed on computer and it is so inconvenient. <br />
It doesn’t matter. It is very easy to be solved as long as you have the Video converter (<a rel="nofollow" class="t" href="http://tipard.com/video-converter-for-mac.html" target="_blank">Mac video converter</a>) or (<a rel="nofollow" class="t" href="http://www.tipard.com/video-converter.html" target="_blank">video converter</a>). It is dedicated to converting <span style="font-weight:bold">AVI, MP4, MPG, MOD, TOD, MOV, MKV, WMV, DivX, XviD, MPEG-1/2, 3GP, 3G2, VOB, MOV, MPV, FLV, and HD videos(HD TS, HD MTS, HD M2TS, HD WMV</span>, etc to what you want above. It is a great program for you to enjoy video on the portable devices.<br />
<br />
Show the video converter in details below:<br />
<br />
<span style="font-weight:bold">Part 1:</span> How to convert video for Mac users<br />
<br />
<span style="font-weight:bold">Firstly,</span> Download and install the video converter for Mac (<a rel="nofollow" class="t" href="http://tipard.com/download/mac/video-converter-intel.dmg" target="_blank">Intel Version</a>) or (<a rel="nofollow" class="t" href="http://tipard.com/download/mac/video-converter-power-pc.dmg" target="_blank">Power PC Version</a>). After the action, you will see the following screenshot:<br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter-for-mac/interface-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...nterface-1.jpg</a><br />
<br />
<span style="font-weight:bold">Step 1:</span> Click the &quot;Add Files&quot; button and add the video files you want to convert. <br />
<span style="font-weight:bold">Step 2:</span> Select the video or audio format you want to convert it to. At the same time, you can set the output parameters of the conversion by clicking “Setting” button to open the Setting window.<br />
<span style="font-weight:bold">Step 3:</span> Click “Browse” button to specify a location to save the converted video or audio. If you want to open the output folder, click “Open” button. <br />
<span style="font-weight:bold">Step 4:</span> Click “Start” button.<br />
<br />
Now you can have a cup of coffee to wait for the conversion. <br />
<br />
This converter also has powerful editing functions besides conversion. Take some examples below:<br />
<br />
<span style="font-weight:bold">1: Snapshot</span><br />
If you like the current image of the video you can use the “Snapshot” option, just click the “Snapshot” button and the image will be saved and then click the “Open” button next to “Snapshot” button to open your picture.<br />
<span style="font-weight:bold">2: Merge</span><br />
If you want to merge several videos into one file you can choose them at one time and click the “Merge into one file” to do it.<br />
<span style="font-weight:bold">3:Effect</span><br />
Click “Effect” button you can do these actions: adjusting brightness, contrast and saturation of the video. You can easily adjust the video through two windows in the same interface. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter-for-mac/effect-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...c/effect-1.jpg</a><br />
<br />
<span style="font-weight:bold">4:Trim</span><br />
If you just want convert a clip of your video, then you can use the &quot;Trim&quot; icon to set the Start time and End time of the clip or you can directly drag the slide bar to the accurate position. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter-for-mac/trim-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...mac/trim-1.jpg</a><br />
<br />
<span style="font-weight:bold">5:Crop</span><br />
By using the “Crop” function you can crop the black edge of your video and you can also drag the line around the video image to adjust your video to your Google Phone. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter-for-mac/crop-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...mac/crop-1.jpg</a><br />
<br />
If you completely read this guide, now you could make full use of it and enjoy your video or audio on your portable devices to your content.<br />
<br />
<span style="font-weight:bold">Part 2:</span> How to convert the video for Windows user<br />
<br />
<span style="font-weight:bold">Firstly,</span> Download and install <span style="font-weight:bold"><a rel="nofollow" class="t" href="http://www.tipard.com/download/video-converter.exe" target="_blank">Tipard Video Converter</a></span><br />
<span style="font-weight:bold">Step 1.</span>Click the &quot;Add File&quot; button to load video file.<br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter/interface.jpg" target="_blank">http://www.tipard.com/guide/tipard-v.../interface.jpg</a><br />
<br />
<span style="font-weight:bold">Step 2.</span> Video settings<br />
Select the output video format you want from the drop-down list of profile.<br />
By cicking the &quot;Settings&quot; button, you can set the video parameters and audio tract.<br />
<span style="font-weight:bold">step 3.</span>Click the &quot;Start&quot; button to start conversion. It is very fast and in a short while your conversion will be finished.<br />
<br />
The most magical changes are the functions of the video converter. Show you in details.<br />
<br />
<span style="font-weight:bold">1: Snapshot</span><br />
If you like the current image of the video you can use the “Snapshot” option, just click the “Snapshot” button and the image will be saved and then click the “Open” button next to “Snapshot” button to open your picture.<br />
<span style="font-weight:bold">2: Merge</span><br />
If you want to merge several videos into one file you can choose them at one time and click the “Merge into one file” to do it.<br />
<span style="font-weight:bold">3:Effect</span><br />
Click “Effect” button you can do these actions: adjusting brightness, contrast and saturation of the video. You can easily adjust the video through two windows in the same interface. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter/effect-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...r/effect-1.jpg</a><br />
<br />
<span style="font-weight:bold">4:Trim</span><br />
If you just want convert a clip of your video, then you can use the &quot;Trim&quot; icon to set the Start time and End time of the clip or you can directly drag the slide bar to the accurate position. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter/trim-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...ter/trim-1.jpg</a><br />
<br />
<span style="font-weight:bold">5:Crop</span><br />
By using the “Crop” function you can crop the black edge of your video and you can also drag the line around the video image to adjust your video to your Google Phone. <br />
<br />
<a href="http://www.tipard.com/guide/tipard-video-converter/crop-1.jpg" target="_blank">http://www.tipard.com/guide/tipard-v...ter/crop-1.jpg</a><br />
<br />
All operation is completed in a few minutes with several clicks.<br />
<br />
If you want to learn more, here <a rel="nofollow" class="t" href="http://www.tipard.com" target="_blank">Tipard Studio</a>.<br />
<br />
Now you can enjoy your videos on your portable players at any time and anywhere!<br />
<br />
Christmas Deals <a rel="nofollow" class="t" href="http://www.tipard.com/xmas.html" target="_blank">here</a></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum38.html">Windows Vista and Windows 7</category>
			<dc:creator>Nighter</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248630.html</guid>
		</item>
		<item>
			<title>Convert character into integer in file.</title>
			<link>http://www.daniweb.com/forums/thread248628.html</link>
			<pubDate>Thu, 24 Dec 2009 01:08:46 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I am using the following code to convert character array in file to integer. 
However, the problem is that there is only one place in the file where it does not convert the character array to integer correctly. 
 
Since my code is big, i am pasting the most relevant part. 
 
  <div...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am using the following code to convert character array in file to integer.<br />
However, the problem is that there is only one place in the file where it does not convert the character array to integer correctly.<br />
<br />
Since my code is big, i am pasting the most relevant part.<br />
<br />
 <pre style="margin:20px; line-height:13px">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(c == 'n')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if((c=getc(fp)) == 'e')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if((c=getc(fp)) == 't')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c=getc(fp);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // For the '_' after net.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arr1 = new char[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int i = -1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while(1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; c=getc(fp);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Get the number.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;c = &quot; &lt;&lt; c &lt;&lt; &quot; ; &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(c == ';' || c == ' ' || c == ',' || c == ')' || c == '=' || c == '&lt;')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;c2 = &quot; &lt;&lt; c &lt;&lt; &quot; ; &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; i = i + 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;c1 = &quot; &lt;&lt; c &lt;&lt; &quot; ; &quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arr1[i] = c;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; numo = atoi(arr1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //sscanf (arr,&quot;%d&quot;,&amp;numo);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; delete arr1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; keep.insert(numo);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot; NET num =&nbsp; &quot; &lt;&lt; numo &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</pre>in the file :<br />
<br />
 <pre style="margin:20px; line-height:13px">&nbsp; &nbsp; not( net_2584, net_2546);<br />
&nbsp; &nbsp; not( net_2585, net_2499);<br />
&nbsp; &nbsp; not( net_2586, <span style="color:Green">net_2490);</span><br />
&nbsp; &nbsp; not( net_2587, net_2474);<br />
&nbsp; &nbsp; not( net_2588, net_2502);<br />
&nbsp; &nbsp; not( net_2589, net_2505);<br />
&nbsp; &nbsp; not( net_2590, net_2507);</pre>It reads 2490 as 24900.<br />
<br />
I do not understand why.<br />
Is there a better way to convert a character array to integer when the size of character array is not known before hand.<br />
<br />
Any help is appreciated. Thanks.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>guest7</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248628.html</guid>
		</item>
		<item>
			<title>Access method of class instance that assigned class</title>
			<link>http://www.daniweb.com/forums/thread248627.html</link>
			<pubDate>Thu, 24 Dec 2009 01:04:14 GMT</pubDate>
			<description><![CDATA[Okay python gurus, this one has me stumped.  Is it possible to introspect and obtain the instance of a class that assigned a class? 
 
I have a simple sample that demonstrates what I'm looking for, but doesn't make any sense why you would do it. 
 
 
class One(object): 
    def...]]></description>
			<content:encoded><![CDATA[<div>Okay python gurus, this one has me stumped.  Is it possible to introspect and obtain the instance of a class that assigned a class?<br />
<br />
I have a simple sample that demonstrates what I'm looking for, but doesn't make any sense why you would do it.<br />
<br />
 <pre style="margin:20px; line-height:13px">class One(object):<br />
&nbsp; &nbsp; def print_parent_hw(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; ?????????<br />
&nbsp; &nbsp; &nbsp; &nbsp; ?????????.print_hw()<br />
<br />
class Two(object):<br />
&nbsp; &nbsp; def __init__(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.cls = One()<br />
&nbsp; &nbsp; def print_hw(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; print &quot;Hello World from One&quot;<br />
&nbsp; &nbsp; def have_one_print_two(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.cls.printparent_hw()<br />
<br />
a = Two()<br />
a.have_one_print_two()</pre><br />
<br />
I could do it by rewriting some code, but this situation could be cleaner and quicker (even though the sample doesn't make much logical sense).  I realize I could do it like this, but it doesn't seem right, and you end up with a circular attribute (i.e. a.cls.parent.cls.parent.cls.parent.cls.......)<br />
<br />
 <pre style="margin:20px; line-height:13px">class One(object):<br />
&nbsp; &nbsp; def __init__(self, parent):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.parent = parent<br />
&nbsp; &nbsp; def print_parent_hw(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.parent.print_hw()<br />
<br />
class Two(object):<br />
&nbsp; &nbsp; def __init__(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.cls = One(self)<br />
&nbsp; &nbsp; def print_hw(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; print &quot;Hello World from One&quot;<br />
&nbsp; &nbsp; def have_one_print_two(self):<br />
&nbsp; &nbsp; &nbsp; &nbsp; self.cls.print_parent_hw()<br />
<br />
a = Two()<br />
a.have_one_print_two()</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum114.html">Python</category>
			<dc:creator>xvalentinex</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248627.html</guid>
		</item>
		<item>
			<title>Readind data from text file</title>
			<link>http://www.daniweb.com/forums/thread248626.html</link>
			<pubDate>Thu, 24 Dec 2009 00:45:06 GMT</pubDate>
			<description><![CDATA[Hello. I am writing an ATM program for a project, but I am having problems matching the users entered pin with what is stored on the text file. Here is how i read the file  
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>Hello. I am writing an ATM program for a project, but I am having problems matching the users entered pin with what is stored on the text file. Here is how i read the file <br />
 <pre style="margin:20px; line-height:13px">import java.io.File;<br />
import java.util.Scanner;<br />
import machine.*;<br />
import javax.swing.JOptionPane;<br />
<br />
<br />
public class FileRead <br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; Transactions query = new Transactions ();<br />
&nbsp; &nbsp; &nbsp; &nbsp; private Scanner read;<br />
&nbsp; &nbsp; &nbsp; &nbsp; private String pin;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public void setPin ( String number )<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; pin = number;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public String getPin ()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return pin;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public void openFile ()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; try<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; read = new Scanner( new File ( &quot;Customers.txt&quot; ) );<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; catch ( Exception e )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; JOptionPane.showMessageDialog( null, &quot;Customer does not exsist&quot; );<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public void readFile ()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String input1 = &quot;holding_name&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String input2 = &quot;holding_pin#&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String input3 = &quot;holding_balance&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (read.hasNext())<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input1 = read.next();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input2 = read.next();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input3 = read.next();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color:Red">if ( input2.equals(pin) )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; query.setBalance(input3);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; JOptionPane.showMessageDialog( null,String.format(&quot;Balance has $%s&quot;, query.getBalance()));</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; public void closeFile ()<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; read.close();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
}</pre>Now when the program gets to this part I find that the pin is set. However, the set balance does not receive any data.What am I doing wrong, is it my &quot;while&quot; statement that needs help?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum9.html">Java</category>
			<dc:creator>Teethous</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248626.html</guid>
		</item>
		<item>
			<title><![CDATA[Calculate Hours & Minutes between two Dates/Time]]></title>
			<link>http://www.daniweb.com/forums/thread248625.html</link>
			<pubDate>Thu, 24 Dec 2009 00:41:39 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I am wanting to Calculate Hours & Minutes between two Dates/Time. 
 
I have four fields: ss_datestart, ss_dateend and ss_timestart and ss_timeend. 
 
I want to display the hours and minutes between two dates/times. 
 
Example:]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I am wanting to Calculate Hours &amp; Minutes between two Dates/Time.<br />
<br />
I have four fields: ss_datestart, ss_dateend and ss_timestart and ss_timeend.<br />
<br />
I want to display the hours and minutes between two dates/times.<br />
<br />
Example:<br />
<br />
$ss_datestart $ss_timestart --- $ss_dateend $ss_timeend<br />
05-12-2009 13:44:31 --- 05-12-2009 17:55:31<br />
<br />
I want it to then display the difference in hours and minutes only, so it would return: 04h 11m (ignoring the seconds of course).<br />
<br />
<br />
And if it were something that went over a day so:<br />
<br />
05-12-2009 13:44:31 --- 06-12-2009 17:55:31 &lt;--- This would return: 28h 11m<br />
<br />
<br />
FYI: Dates are dd-mm-yyyy</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>julzk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248625.html</guid>
		</item>
		<item>
			<title>PHP DOB - Concatination</title>
			<link>http://www.daniweb.com/forums/thread248624.html</link>
			<pubDate>Thu, 24 Dec 2009 00:07:57 GMT</pubDate>
			<description><![CDATA[Hi all, I have a form that works great, thats updates mysql db\table But id like the end user to enter his/her D.O.B. 
 
for that I have created 3 dropdown menus one for day, second for month and third for year..since I'm new to php Id like to understand \ learn more about concatination  
 
the...]]></description>
			<content:encoded><![CDATA[<div>Hi all, I have a form that works great, thats updates mysql db\table But id like the end user to enter his/her D.O.B.<br />
<br />
for that I have created 3 dropdown menus one for day, second for month and third for year..since I'm new to php Id like to understand \ learn more about concatination <br />
<br />
the fields are called dob_d \ dob_m \ dob_y <br />
<br />
 <pre style="margin:20px; line-height:13px">$gender = clean($_POST['gender']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $fname = clean($_POST['fname']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $lname = clean($_POST['lname']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $dob_y = clean($_POST['dob_y']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $dob_m = clean($_POST['dob_m']);<br />
&nbsp; &nbsp; &nbsp; &nbsp; $dob_d = clean($_POST['dob_d']);</pre><br />
I have tried several combinations of the above ie. <br />
dob_y \ dob_m \ dob_d<br />
<br />
the database field is named &quot;dob&quot; <br />
<br />
 <pre style="margin:20px; line-height:13px">$dob_db = &quot;$dob_y-$dob_m-$dob_d&quot;;<br />
iv also tried <br />
$dob_db = &quot;$dob_y.&quot; &quot;.$dob_m.&quot; &quot;.$dob_d&quot;;</pre><br />
 <pre style="margin:20px; line-height:13px">$qry = &quot;INSERT INTO users(securecode, gender, firstname, lastname, dob, age, login,) VALUES('$securecode','$gender','$fname','$lname','$dob','$age','$login')&quot;;</pre><br />
its driving me crazy, Hope someone can help me out on this, and provide a learning curve, not just for me, but for those who may be looking for the same type of solution.<br />
be regards<br />
Lloyd</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>LloydFarrell</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248624.html</guid>
		</item>
		<item>
			<title>im a student and definitely need help</title>
			<link>http://www.daniweb.com/forums/thread248623.html</link>
			<pubDate>Wed, 23 Dec 2009 23:52:00 GMT</pubDate>
			<description>im a student in software engineering and need help</description>
			<content:encoded><![CDATA[<div>im a student in software engineering and need help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum165.html">Community Introductions</category>
			<dc:creator>inpdreamer</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248623.html</guid>
		</item>
		<item>
			<title>The real polynomials</title>
			<link>http://www.daniweb.com/forums/thread248622.html</link>
			<pubDate>Wed, 23 Dec 2009 23:17:54 GMT</pubDate>
			<description><![CDATA[Please I have a little problem with my project. It goes 
"A polynomial of degree n is represented as  
Pn(x)=A0 + a1x + a2x^2 + … + anx^n  
Where a0, a1, a2, a3 , … , an are constant coefficients. Evaluation of such polynomials may be important if Pn(x) is to be computed many times for different...]]></description>
			<content:encoded><![CDATA[<div>Please I have a little problem with my project. It goes<br />
&quot;A polynomial of degree n is represented as <br />
Pn(x)=A0 + a1x + a2x^2 + … + anx^n <br />
Where a0, a1, a2, a3 , … , an are constant coefficients. Evaluation of such polynomials may be important if Pn(x) is to be computed many times for different values of x. Design and implement a program that asks for the user to enter a value for the degree of the polynomial n, and values for n+1 coefficient.<br />
Your program should read these values and then in a loop it should prompt the user to enter the values for X and compute and print values for the polynomial. Your program should terminate execution if the last two values read for x are equal. Your program should be able to process polynomials of degree 6 or less.&quot;<br />
So far i guess that n+1 should be an array, but i don't know what to do. Please I need help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum118.html">C</category>
			<dc:creator>Pamilerin</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248622.html</guid>
		</item>
		<item>
			<title>DIRECTORY SEPERATOR vs %5C</title>
			<link>http://www.daniweb.com/forums/thread248620.html</link>
			<pubDate>Wed, 23 Dec 2009 22:43:22 GMT</pubDate>
			<description>Hi Guys 
 
I have been using the DIRECTORY SEPERATOR and from time to time i get a %5C instead of the appropriate / or \ now. Any ideas what is the problem? 
 
Thanks, Regards X</description>
			<content:encoded><![CDATA[<div>Hi Guys<br />
<br />
I have been using the DIRECTORY SEPERATOR and from time to time i get a %5C instead of the appropriate / or \ now. Any ideas what is the problem?<br />
<br />
Thanks, Regards X</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>OmniX</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248620.html</guid>
		</item>
		<item>
			<title>Polynomials</title>
			<link>http://www.daniweb.com/forums/thread248618.html</link>
			<pubDate>Wed, 23 Dec 2009 22:27:32 GMT</pubDate>
			<description><![CDATA[Please I have a little problem with my project. It goes 
"A polynomial of degree n is represented as  
Pn(x)=A0 + a1x + a2x2 + … + anxn  
Where a0, a1, a2, a3 , … , an are constant coefficients. Evaluation of such polynomials may be important if Pn(x) is to be computed many times for different...]]></description>
			<content:encoded><![CDATA[<div>Please I have a little problem with my project. It goes<br />
&quot;A polynomial of degree n is represented as <br />
Pn(x)=A0 + a1x + a2x2 + … + anxn <br />
Where a0, a1, a2, a3 , … , an are constant coefficients. Evaluation of such polynomials may be important if Pn(x) is to be computed many times for different values of x. Design and implement a program that asks for the user  the degree of the polynomial n, and values for n+1 coefficient.<br />
Your program should read these values and then in a loop it should prompt the user to enter values for X and compute and print  values for the polynomial. Your program should terminate execution if the last two values read for x are equal. Your program should be able to process polynomials of degree 6 or less.&quot;<br />
So far i guess that n+1 should be an array, but i don't know what to do. Please I need help</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum118.html">C</category>
			<dc:creator>Pamilerin</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248618.html</guid>
		</item>
		<item>
			<title>Help with homework  please</title>
			<link>http://www.daniweb.com/forums/thread248616.html</link>
			<pubDate>Wed, 23 Dec 2009 22:22:48 GMT</pubDate>
			<description>a)	If the content of d0 is $30 state in words what each of the following numbered instructions will do when placed immediately after the test instruction below 
tst  d0 
a)	bne	fred       
 
b)	If the content of d0 is $30 state in words what each of the following numbered instruction pairs will do....</description>
			<content:encoded><![CDATA[<div>a)	If the content of d0 is $30 state in words what each of the following numbered instructions will do when placed immediately after the test instruction below<br />
tst  d0<br />
a)	bne	fred      <br />
<br />
b)	If the content of d0 is $30 state in words what each of the following numbered instruction pairs will do.<br />
a.	cmpi 	#$30,d0<br />
beq	dan<br />
<br />
b.	cmp.l	unknown,d0<br />
bne	dan<br />
<br />
c.	cmp.w	d1,d0<br />
bgt	dan</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum125.html">Assembly</category>
			<dc:creator>stamford47</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248616.html</guid>
		</item>
		<item>
			<title>Sorting in VB.Net</title>
			<link>http://www.daniweb.com/forums/thread248615.html</link>
			<pubDate>Wed, 23 Dec 2009 22:22:28 GMT</pubDate>
			<description><![CDATA[I have six textboxes, and upon button press it randomly generates six numbers, one in eact text box 
 
e.g. [43]   [85]  [93]  [1]  [0]  [17] 
 
Question: 
 
i create another six textboxes and at the same time allocate these numbers in ascending/descending numbers. 
 
*I am not looking for any...]]></description>
			<content:encoded><![CDATA[<div>I have six textboxes, and upon button press it randomly generates six numbers, one in eact text box<br />
<br />
e.g. [43]   [85]  [93]  [1]  [0]  [17]<br />
<br />
Question:<br />
<br />
i create another six textboxes and at the same time allocate these numbers in ascending/descending numbers.<br />
<br />
<span style="font-weight:bold">I am not looking for any codes whatsoever</span>, as i love the challenge of VB.Net But I require a hint, as the bubble method has boggled me!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum4.html">Visual Basic 4 / 5 / 6</category>
			<dc:creator>theresonly1ash</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248615.html</guid>
		</item>
		<item>
			<title>vb.net 2003 - Window application Confirm record exist</title>
			<link>http://www.daniweb.com/forums/thread248611.html</link>
			<pubDate>Wed, 23 Dec 2009 22:02:56 GMT</pubDate>
			<description><![CDATA[Hi There, 
In VB6 I used ADP to confirm record existence by using this script 
IF   ADO.EOF OR ADO.BOF then 
      ado.addnew 
End if 
 
but in VB.NET 2003, How before using SQL String to Insert the record how do I confirm it's existence in the Table to prevent duplication. 
 
Please help me.]]></description>
			<content:encoded><![CDATA[<div>Hi There,<br />
In VB6 I used ADP to confirm record existence by using this script<br />
IF   ADO.EOF OR ADO.BOF then<br />
      ado.addnew<br />
End if<br />
<br />
but in VB.NET 2003, How before using SQL String to Insert the record how do I confirm it's existence in the Table to prevent duplication.<br />
<br />
Please help me.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>LennieKuah</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248611.html</guid>
		</item>
		<item>
			<title>vector destuctor</title>
			<link>http://www.daniweb.com/forums/thread248610.html</link>
			<pubDate>Wed, 23 Dec 2009 21:57:46 GMT</pubDate>
			<description><![CDATA[I have the following code and was wondering if it is a memory leak 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags"...]]></description>
			<content:encoded><![CDATA[<div>I have the following code and was wondering if it is a memory leak<br />
 <pre style="margin:20px; line-height:13px">#include &lt;cstdlib&gt;<br />
#include &lt;iostream&gt;<br />
#include &lt;iomanip&gt;<br />
#include &lt;vector&gt;<br />
<br />
using namespace std;<br />
<br />
template &lt;class T&gt;<br />
class live {<br />
&nbsp; vector&lt;T&gt; _data;<br />
&nbsp; live&lt;T&gt; *_next, *_temp;<br />
public:<br />
&nbsp; live(int elements, int chunk = 10) : _next(NULL)<br />
&nbsp; {<br />
&nbsp; &nbsp; if (elements &gt; chunk)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; _data.reserve(chunk);<br />
&nbsp; &nbsp; &nbsp; _next = new live&lt;T&gt;(elements - chunk, chunk);<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; else _data.reserve(chunk);<br />
&nbsp; }<br />
&nbsp; <br />
&nbsp; ~live() { if (_next) { _next-&gt;~live(); delete _next; } }<br />
<br />
};</pre>Do I have to call the destuctor of the vector because I allocated:<br />
_next = new live&lt;T&gt;(elements - chunk, chunk);<br />
or is it called automatically when it becomes out of scope?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>qwertymk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248610.html</guid>
		</item>
		<item>
			<title>Map Drive through website</title>
			<link>http://www.daniweb.com/forums/thread248609.html</link>
			<pubDate>Wed, 23 Dec 2009 21:55:29 GMT</pubDate>
			<description>Good Afternoon, 
 
Hopefully someone here may be able to point me in the right direction for this.  At my company, we are striving to standardize many things and one that I am looking into is standard mapping of network drives.  Is there a way that I could have a user click a button on our Intranet...</description>
			<content:encoded><![CDATA[<div>Good Afternoon,<br />
<br />
Hopefully someone here may be able to point me in the right direction for this.  At my company, we are striving to standardize many things and one that I am looking into is standard mapping of network drives.  Is there a way that I could have a user click a button on our Intranet site which would then unmap their current drives and remap new ones so that it eventually becomes standard locations across the board?  If anyone could help with this that would be great, or if anyone has any suggestions.  The client PC users are people with little to no computer experience so the easier the better.<br />
<br />
Thanks!<br />
<br />
Rob</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum145.html">Existing Scripts</category>
			<dc:creator>rcdeck</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248609.html</guid>
		</item>
		<item>
			<title>help me plz</title>
			<link>http://www.daniweb.com/forums/thread248607.html</link>
			<pubDate>Wed, 23 Dec 2009 21:05:54 GMT</pubDate>
			<description><![CDATA[<div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with Code Tags</a> </div> <div>(<a href="#"...]]></description>
			<content:encoded><![CDATA[<div> <pre style="margin:20px; line-height:13px">#include &lt;iostream&gt;<br />
#include &lt;fstream&gt;<br />
//#include &lt;scientific&gt;<br />
<br />
using namespace std;<br />
<br />
main ()<br />
{<br />
<br />
&nbsp;  ifstream in;<br />
&nbsp;  ifstream in1;<br />
&nbsp;  ofstream out;<br />
&nbsp; <br />
&nbsp;<br />
&nbsp; out.open(&quot;electrons.dat&quot;);<br />
&nbsp;  double x,y,z,electronenergydeposit,gammaenergy; <br />
&nbsp;  int nlines = 0,nlines1=0,electronparent,electrontrack,electronevent,electronevent0=-1,gammaevent=-1,gammatrack,gammaparent,stepNo,process,creatNum;<br />
long pos, poscurrentevent=0, posnextevent=-1;<br />
&nbsp;//&nbsp; TFile *f = new TFile(&quot;Depos.root&quot;,&quot;RECREATE&quot;);<br />
&nbsp; // TFile *f1 = new TFile(&quot;gammas.root&quot;,&quot;RECREATE&quot;);<br />
&nbsp; in.open(&quot;Depos.dat&quot;);<br />
&nbsp;in1.open(&quot;gammas.dat&quot;);<br />
&nbsp; <br />
&nbsp; &nbsp; while (!in.eof()) {<br />
in&gt;&gt;electronevent&gt;&gt;x&gt;&gt;y&gt;&gt;z&gt;&gt;electronparent&gt;&gt;electrontrack&gt;&gt;electronenergydeposit;<br />
<br />
if (electronevent==electronevent0) in1.seekg(poscurrentevent);<br />
<br />
if (electronevent&gt;electronevent0) { <br />
if (gammaevent&gt;0) in1.seekg(posnextevent);<br />
while (!in1.eof()) {<br />
pos=in1.tellg();<br />
in1 &gt;&gt;gammaevent&gt;&gt;gammatrack&gt;&gt;gammaparent&gt;&gt;gammaenergy;<br />
if (gammaevent&gt;electronevent) {<br />
if (electronevent&gt;0) poscurrentevent=posnextevent;<br />
posnextevent=pos;break;<br />
}<br />
}<br />
}<br />
<br />
electronevent0=electronevent;<br />
<br />
int check=0;<br />
in1.seekg(poscurrentevent);<br />
while (!in1.eof()) {<br />
pos=in1.tellg();<br />
&nbsp;in1 &gt;&gt;gammaevent&gt;&gt;gammatrack&gt;&gt;gammaparent&gt;&gt;gammaenergy;<br />
if (pos==posnextevent) break;<br />
&nbsp;if (electronevent == gammaevent &amp;&amp; gammatrack == electronparent)<br />
{<br />
if ( check &gt; 0 ) break;<br />
<br />
out &lt;&lt; scientific&lt;&lt;electronevent&lt;&lt;&nbsp; &quot;&nbsp; &nbsp; &nbsp; &nbsp; &quot; &lt;&lt;x &lt;&lt;&nbsp; &quot;&nbsp; &nbsp; &nbsp; &nbsp; &quot; &lt;&lt;y&lt;&lt; &quot;&nbsp; &nbsp; &nbsp;  &quot;&lt;&lt;z &lt;&lt; &quot;&nbsp; &nbsp; &nbsp;  &quot; &lt;&lt;electronparent&lt;&lt; &quot;&nbsp; &nbsp;  &quot;&lt;&lt; electrontrack &lt;&lt; &quot;&nbsp; &nbsp;  &quot; &lt;&lt;electronenergydeposit&nbsp; &lt;&lt;endl;<br />
<br />
<br />
check++;<br />
<br />
}<br />
<br />
nlines1++;<br />
<br />
}<br />
&nbsp;<br />
nlines++;<br />
<br />
//cout &lt;&lt; electronevent &lt;&lt; &quot;&nbsp; &nbsp;  &quot;&lt;&lt; nlines &lt;&lt; &quot;&nbsp; &nbsp; &quot; &lt;&lt; nlines1 &lt;&lt; endl;<br />
<br />
cout &lt;&lt; electronevent &lt;&lt; endl;<br />
}<br />
<br />
<br />
&nbsp;<br />
in.close();<br />
in1.close();<br />
out.close();<br />
}</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>abuaqrab</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248607.html</guid>
		</item>
		<item>
			<title>Selling My Niche Domain Bestacneskincare.com</title>
			<link>http://www.daniweb.com/forums/thread248606.html</link>
			<pubDate>Wed, 23 Dec 2009 21:01:58 GMT</pubDate>
			<description><![CDATA[Hi guys, 
 
I'm selling my niche domain bestacneskincare.com. I've had the domain manually appraised by the sedo team which comes to 1,200 Euros but am selling this one much cheaper. 
More on the domain, why i'm selling and the appraisal here: 
...]]></description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
<br />
I'm selling my niche domain bestacneskincare.com. I've had the domain manually appraised by the sedo team which comes to 1,200 Euros but am selling this one much cheaper.<br />
More on the domain, why i'm selling and the appraisal here:<br />
<br />
<a rel="nofollow" class="t" href="http://sedo.com/search/details.php4?domain=bestacneskincare.com&amp;tracked=&amp;partnerid=&amp;language=d" target="_blank">http://sedo.com/search/details.php4?...id=&amp;language=d</a><br />
<br />
In the christmas spirit i would be willing to also go down with the price but need offers.<br />
<br />
Cheers<br />
Jamal</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum116.html">Domain Names for Sale</category>
			<dc:creator>infonaut80</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248606.html</guid>
		</item>
		<item>
			<title><![CDATA[Virus/Spyware - Can't get rid of]]></title>
			<link>http://www.daniweb.com/forums/thread248605.html</link>
			<pubDate>Wed, 23 Dec 2009 21:01:29 GMT</pubDate>
			<description><![CDATA[Hi, I had no choice but to register here and get some help as this thing is getting the best of me. Now, I'm a very careful user, rarely download/run any random software and try to get very good care of my laptop. 2 days ago, out of nowhere, it just froze up on me after about 20 min of starting. I...]]></description>
			<content:encoded><![CDATA[<div>Hi, I had no choice but to register here and get some help as this thing is getting the best of me. Now, I'm a very careful user, rarely download/run any random software and try to get very good care of my laptop. 2 days ago, out of nowhere, it just froze up on me after about 20 min of starting. I hadn't shut it down in a few weeks (been using Hibernate instead) so the system was stable for a while and out of nowhere is freezes. I didn't download/run anything new that day, just my regular stuff (Firefox/Visual Studio/Notepad etc). I had no choice but the force a shut down since nothing was responding. But a little after restarting it froze again. I began to suspect its a HW problem - I decided to get a tool to check my temps - a quick search led me to &quot;Speedfan&quot;. Now when I tried to download it - I kept getting redirected to some website which then redirected me to spam. I thought the link is broken so I got a torrent of Speedfan and the core temps were around 60-70C which was high - so while doing some research on this all, of a sudden I get redirected to the same spam website again! Its been happening on both IE and Firefox ever since. <br />
I'm pretty sure this is all caused by some virus - but so far I have been unable to get rid of it. <br />
I've used MB-AV full scan - nothing. My AV - TendMicro Office Scan - nothing. Microsoft's latest &quot;Malware removal tool&quot; - nothing. The computer is still freezing constantly (no crash, just screen freezes and nothing is responsive anymore). I ran HijackThis, nothing seems to be suspicious (see attached).<br />
<br />
Sorry for being wordy.. any help?<br />
<br />
<br />
<br />
Logfile of Trend Micro HijackThis v2.0.2<br />
Scan saved at 12:20:16 PM, on 23/12/2009<br />
Platform: Windows XP SP2 (WinNT 5.01.2600)<br />
MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)<br />
Boot mode: Normal<br />
<br />
Running processes:<br />
C:\WINDOWS\System32\smss.exe<br />
C:\WINDOWS\system32\winlogon.exe<br />
C:\WINDOWS\system32\services.exe<br />
C:\WINDOWS\system32\lsass.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\WINDOWS\System32\svchost.exe<br />
C:\WINDOWS\System32\WLTRYSVC.EXE<br />
C:\WINDOWS\System32\bcmwltry.exe<br />
C:\WINDOWS\system32\spoolsv.exe<br />
C:\Program Files\Common Files\Microsoft Shared\VS7DEBUG\MDM.EXE<br />
C:\Program Files\Dell\QuickSet\NICCONFIGSVC.exe<br />
C:\Program Files\Trend Micro\OfficeScan Client\ntrtscan.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\Program Files\Trend Micro\OfficeScan Client\tmlisten.exe<br />
C:\Program Files\Trend Micro\OfficeScan Client\OfcPfwSvc.exe<br />
C:\WINDOWS\system32\wuauclt.exe<br />
C:\WINDOWS\TEMP\GNCF1E.EXE<br />
C:\WINDOWS\Explorer.EXE<br />
C:\WINDOWS\system32\hkcmd.exe<br />
C:\WINDOWS\system32\igfxpers.exe<br />
C:\WINDOWS\system32\igfxsrvc.exe<br />
C:\WINDOWS\system32\WLTRAY.exe<br />
C:\WINDOWS\stsystra.exe<br />
C:\Program Files\Synaptics\SynTP\SynTPEnh.exe<br />
C:\WINDOWS\system32\dla\tfswctrl.exe<br />
C:\Program Files\Dell\QuickSet\Quickset.exe<br />
C:\Program Files\Trend Micro\OfficeScan Client\pccntmon.exe<br />
C:\Program Files\Java\jre6\bin\jusched.exe<br />
C:\WINDOWS\system32\ctfmon.exe<br />
C:\Program Files\Digital Line Detect\DLG.exe<br />
C:\Program Files\Mozilla Firefox\firefox.exe<br />
C:\WINDOWS\System32\svchost.exe<br />
C:\Program Files\Trend Micro\HijackThis\HijackThis.exe<br />
<br />
R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a rel="nofollow" class="t" href="http://www.google.ca/ig/dell?hl=en&amp;client=dell-row&amp;channel=ca&amp;ibd=5060905" target="_blank">http://www.google.ca/ig/dell?hl=en&amp;c...ca&amp;ibd=5060905</a><br />
R1 - HKCU\Software\Microsoft\Internet Explorer\Main,Search Bar = <a rel="nofollow" class="t" href="http://www.google.ca/hws/sb/dell-row/en/side.html?channel=ca" target="_blank">http://www.google.ca/hws/sb/dell-row...tml?channel=ca</a><br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = about<b></b>:blank<br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://www1.ca.dell.com/content/default.aspx?c=ca&amp;l=en&amp;s=gen" target="_blank">http://www1.ca.dell.com/content/defa...=ca&amp;l=en&amp;s=gen</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Search,Default_Page_URL = <a rel="nofollow" class="t" href="http://www.google.ca/ig/dell?hl=en&amp;client=dell-row&amp;channel=ca&amp;ibd=5060905" target="_blank">http://www.google.ca/ig/dell?hl=en&amp;c...ca&amp;ibd=5060905</a><br />
O2 - BHO: AcroIEHelperStub - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll<br />
O2 - BHO: (no name) - {5C255C8A-E604-49b4-9D64-90988571CECB} - (no file)<br />
O2 - BHO: DriveLetterAccess - {5CA3D70E-1895-11CF-8E15-001234567890} - C:\WINDOWS\system32\dla\tfswshx.dll<br />
O2 - BHO: Windows Live Sign-in Helper - {9030D464-4C02-4ABF-8ECC-5164760863C6} - C:\Program Files\Common Files\Microsoft Shared\Windows Live\WindowsLiveLogin.dll<br />
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br />
O2 - BHO: JQSIEStartDetectorImpl - {E7E6F031-17CE-4C07-BC86-EABFE594F69C} - C:\Program Files\Java\jre6\lib\deploy\jqs\ie\jqs_plugin.dll<br />
O4 - HKLM\..\Run: [igfxtray] C:\WINDOWS\system32\igfxtray.exe<br />
O4 - HKLM\..\Run: [igfxhkcmd] C:\WINDOWS\system32\hkcmd.exe<br />
O4 - HKLM\..\Run: [igfxpers] C:\WINDOWS\system32\igfxpers.exe<br />
O4 - HKLM\..\Run: [Broadcom Wireless Manager UI] C:\WINDOWS\system32\WLTRAY.exe<br />
O4 - HKLM\..\Run: [SigmatelSysTrayApp] stsystra.exe<br />
O4 - HKLM\..\Run: [SynTPEnh] C:\Program Files\Synaptics\SynTP\SynTPEnh.exe<br />
O4 - HKLM\..\Run: [dla] C:\WINDOWS\system32\dla\tfswctrl.exe<br />
O4 - HKLM\..\Run: [Dell QuickSet] C:\Program Files\Dell\QuickSet\Quickset.exe<br />
O4 - HKLM\..\Run: [OfficeScanNT Monitor] &quot;C:\Program Files\Trend Micro\OfficeScan Client\pccntmon.exe&quot; -HideWindow<br />
O4 - HKLM\..\Run: [QuickTime Task] &quot;C:\Program Files\QuickTime\qttask.exe&quot; -atboottime<br />
O4 - HKLM\..\Run: [BluetoothAuthenticationAgent] rundll32.exe bthprops.cpl,,BluetoothAuthenticationAgent<br />
O4 - HKLM\..\Run: [MSConfig] C:\WINDOWS\PCHealth\HelpCtr\Binaries\MSConfig.exe /auto<br />
O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe<br />
O4 - Global Startup: Digital Line Detect.lnk = ?<br />
O8 - Extra context menu item: E&amp;xport to Microsoft Excel - res://C:\PROGRA~1\MI1933~1\Office12\EXCEL.EXE/3000<br />
O9 - Extra button: MUSICMATCH MX Web Player - {d81ca86b-ef63-42af-bee3-4502d9a03c2d} - <a rel="nofollow" class="t" href="http://wwws.musicmatch.com/mmz/openWebRadio.html" target="_blank">http://wwws.musicmatch.com/mmz/openWebRadio.html</a> (file missing)<br />
O9 - Extra button: Yahoo! Messenger - {E5D12C4E-7B4F-11D3-B5C9-0050045C3C96} - C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe<br />
O9 - Extra 'Tools' menuitem: Yahoo! Messenger - {E5D12C4E-7B4F-11D3-B5C9-0050045C3C96} - C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe<br />
O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O16 - DPF: {C3F79A2B-B9B4-4A66-B012-3EE46475B072} (MessengerStatsClient Class) - <a rel="nofollow" class="t" href="http://messenger.zone.msn.com/binary/MessengerStatsPAClient.cab56907.cab" target="_blank">http://messenger.zone.msn.com/binary...t.cab56907.cab</a><br />
O23 - Service: DSBrokerService - Unknown owner - C:\Program Files\DellSupport\brkrsvc.exe<br />
O23 - Service: Java Quick Starter (JavaQuickStarterService) - Sun Microsystems, Inc. - C:\Program Files\Java\jre6\bin\jqs.exe<br />
O23 - Service: MySQL - Unknown owner - C:\SERVER\Apache\MySQL5\bin\mysqld-nt (file missing)<br />
O23 - Service: NICCONFIGSVC - Dell Inc. - C:\Program Files\Dell\QuickSet\NICCONFIGSVC.exe<br />
O23 - Service: OfficeScanNT RealTime Scan (ntrtscan) - Trend Micro Inc. - C:\Program Files\Trend Micro\OfficeScan Client\ntrtscan.exe<br />
O23 - Service: OfficeScanNT Personal Firewall (OfcPfwSvc) - Trend Micro Inc. - C:\Program Files\Trend Micro\OfficeScan Client\OfcPfwSvc.exe<br />
O23 - Service: OfficeScanNT Listener (tmlisten) - Trend Micro Inc. - C:\Program Files\Trend Micro\OfficeScan Client\tmlisten.exe<br />
O23 - Service: Dell Wireless WLAN Tray Service (wltrysvc) - Unknown owner - C:\WINDOWS\System32\WLTRYSVC.EXE</div>  <br /> <div style="padding:5px">     <fieldset class="fieldset"> <legend>Attached Files</legend> <table cellpadding="0" cellspacing="5" border="0"> <tr> <td><img class="inlineimg" src="http://www.daniweb.com/forums/images/attach/txt.gif" alt="File Type: txt" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=13039&amp;d=1261601942">hijackthis.txt</a> (5.7 KB)</td> </tr> </table> </fieldset>  </div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum64.html">Viruses, Spyware and other Nasties</category>
			<dc:creator>ag_47</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248605.html</guid>
		</item>
		<item>
			<title>Selling My MicroNiche Review Website PeltorHearingProtector.com</title>
			<link>http://www.daniweb.com/forums/thread248604.html</link>
			<pubDate>Wed, 23 Dec 2009 20:56:20 GMT</pubDate>
			<description><![CDATA[Hi guys, 
 
I'm selling my microniche review site peltorhearingprotector.com currently hosted at namecheap. I came across this niche in early november 2009 whilst funny enough looking to buy an ipod. 
 
The blog is self promoting. This means everytime you post a review, the articles are...]]></description>
			<content:encoded><![CDATA[<div>Hi guys,<br />
<br />
I'm selling my microniche review site peltorhearingprotector.com currently hosted at namecheap. I came across this niche in early november 2009 whilst funny enough looking to buy an ipod.<br />
<br />
The blog is self promoting. This means everytime you post a review, the articles are automatically RSS syndicated. Your posts will be found both by google and by interested readers. <br />
<br />
As the new owner of the website, you will only need to concentrate on the blog posts (some of which have already been drafted to post in January). The blog will promote itself ;)<br />
<br />
To prove this hop over to peltorhearingprotector.com and type in the post titles into google. You will see the blog come up in the 1st pages of google for ALL the postings on the blog.<br />
<br />
The blog has also started making sales on amazon since nov 2009 - $87.43 to be exact.<br />
<a rel="nofollow" class="t" href="http://www.whois.net/whois/peltorhearingprotector.com" target="_blank">http://www.whois.net/whois/peltorhearingprotector.com</a><br />
<br />
I've provide screenshots below.<br />
<br />
Keyword Traffic:<br />
<a rel="nofollow" class="t" href="http://peltorhearingprotector.com/peltorhearingprotectordotcom1.JPG" target="_blank">http://peltorhearingprotector.com/pe...tordotcom1.JPG</a><br />
<br />
Traffic Sources:<br />
<a rel="nofollow" class="t" href="http://peltorhearingprotector.com/peltorhearingprotectordotcom2.JPG" target="_blank">http://peltorhearingprotector.com/pe...tordotcom2.JPG</a><br />
<br />
Visitors:<br />
<a rel="nofollow" class="t" href="http://peltorhearingprotector.com/peltorhearingprotectordotcom3.JPG" target="_blank">http://peltorhearingprotector.com/pe...tordotcom3.JPG</a><br />
<br />
Amazon Sales Worth $87.43 in 1 month:<br />
<a rel="nofollow" class="t" href="http://peltorhearingprotector.com/peltor-amazon-sales.JPG" target="_blank">http://peltorhearingprotector.com/pe...azon-sales.JPG</a><br />
<br />
Since this is my 1st attempt at selling a site, i will need an experienced buyer to help me through the transfer of the wordpress databases and thought daniweb would be the best place for this :)<br />
<br />
** <span style="font-weight:bold"><span style="color:Red">Christmas BONUS</span></span>: I'll be sharing some seo blog posting tricks with the new owner of peltorhearingprotector.com who buys the website before christmas*<br />
<br />
Shoot me any questions you may have either here or at my email <a href="mailto:advertiser77@gmail.com">advertiser77@gmail.com</a><br />
<br />
Cheers and have a smashing day<br />
Jamal</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum164.html">Websites for Sale</category>
			<dc:creator>infonaut80</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248604.html</guid>
		</item>
		<item>
			<title>Check for a number in a string</title>
			<link>http://www.daniweb.com/forums/thread248603.html</link>
			<pubDate>Wed, 23 Dec 2009 20:46:41 GMT</pubDate>
			<description><![CDATA[Hi all,  
   I'm pretty new to VB.net, having only recently migrated from VB5(!).  I'd appreciate any help at all with the following problem that I have on a project; 
 
   I'm reading data in from a comma-separated text file and storing the data in an array for later use.  Some of the values are...]]></description>
			<content:encoded><![CDATA[<div>Hi all, <br />
   I'm pretty new to VB.net, having only recently migrated from VB5(!).  I'd appreciate any help at all with the following problem that I have on a project;<br />
<br />
   I'm reading data in from a comma-separated text file and storing the data in an array for later use.  Some of the values are to remain as strings, and I need to convert some to integers, for which I was trying to use, for example, integer.parse(ar(0)).<br />
<br />
  My problem is that the string values are randomly distributed through the text file, so I need to be able to test whether the string can be converted at all before doing the conversion.<br />
<br />
  So - can anyone tell me if there is there a way to do this, or should I be looking for an alternative method?<br />
<br />
   Thanks, Gavin</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>labsnark</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248603.html</guid>
		</item>
		<item>
			<title>Suggestions for my site</title>
			<link>http://www.daniweb.com/forums/thread248602.html</link>
			<pubDate>Wed, 23 Dec 2009 20:45:19 GMT</pubDate>
			<description>I have classified site for my country plz give your suggestions. (http://www.giantclassified.com/)</description>
			<content:encoded><![CDATA[<div><a rel="nofollow" class="t" href="http://www.giantclassified.com/" target="_blank">I have classified site for my country plz give your suggestions.</a></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum55.html">Website Reviews</category>
			<dc:creator>since1800</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248602.html</guid>
		</item>
		<item>
			<title>security</title>
			<link>http://www.daniweb.com/forums/thread248601.html</link>
			<pubDate>Wed, 23 Dec 2009 20:31:37 GMT</pubDate>
			<description>Hey im building a site and i need to learn a bit more about security, ajax, php everything.  
I know basic stuff but I havent read anything about it so plz share some links or experience plz ! 
 
For example am I going to use a ajaxlogin, anything I really need to know??</description>
			<content:encoded><![CDATA[<div>Hey im building a site and i need to learn a bit more about security, ajax, php everything. <br />
I know basic stuff but I havent read anything about it so plz share some links or experience plz !<br />
<br />
For example am I going to use a ajaxlogin, anything I really need to know??</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>Philip435</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248601.html</guid>
		</item>
		<item>
			<title>News Story NORAD Santa Gearing Up for 2009, with Google</title>
			<link>http://www.daniweb.com/news/story248600.html</link>
			<pubDate>Wed, 23 Dec 2009 20:29:53 GMT</pubDate>
			<description><![CDATA[You could call it Santa 6.0. 
 
In what's becoming a regular product cycle, Google announced (http://googleblog.blogspot.com/2009/12/now-dasher-now-dancer-track-santa-and.html) today the new features that Santa-tracking kids of all ages could expect starting on Christmas Eve at 2 am EST: primarily,...]]></description>
			<content:encoded><![CDATA[<div>You could call it Santa 6.0.<br />
<br />
In what's becoming a regular product cycle, Google <a rel="nofollow" class="t" href="http://googleblog.blogspot.com/2009/12/now-dasher-now-dancer-track-santa-and.html" target="_blank">announced</a> today the new features that Santa-tracking kids of all ages could expect starting on Christmas Eve at 2 am EST: primarily, support for the Google Earth plug-in, meaning that users will be able to watch Santa from within a browser rather than having to run the Google Earth software.<br />
<br />
&quot;Last year, users were prompted to install Google Earth, download the .kmz file, then open the .kmz in Google Earth. For some less-than-technically-savvy users, this 3-part process was confusing and difficult,&quot; explained the <a rel="nofollow" class="t" href="http://googlegeodevelopers.blogspot.com/2009/12/this-year-santa-is-totally-plugged-in.html" target="_blank">Google Geo Developers Blog</a>. &quot;Using the Plug-in is much easier; if users have the lightweight client (aka, the Plug-in) installed, all they have to do is visit the <a rel="nofollow" class="t" href="http://www.noradsanta.org/en/track3d.html" target="_blank">NORAD Tracks Santa Google Earth</a> page, and they'll see Santa in 3D.&quot;<br />
<br />
As with last year, other ways to track Santa include a Twitter feed (<a rel="nofollow" class="t" href="http://twitter.com/noradsanta" target="_blank">@noradsanta</a>) and on mobile phones using Google Maps. <br />
<br />
So how did a missile defense system begin tracking Santa in the first place?<br />
<br />
It's actually a very sweet story. &quot;The tradition began in 1955 after a Colorado Springs-based Sears Roebuck &amp; Co. advertisement for children to call Santa misprinted the telephone number,&quot; explains the <a rel="nofollow" class="t" href="http://www.noradsanta.org/en/whytrack.html" target="_blank">NORAD Santa website</a>. &quot;Instead of reaching Santa, the phone number put kids through to the CONAD Commander-in-Chief's operations &quot;hotline.&quot; The Director of Operations at the time, Colonel Harry Shoup, had his staff check radar for indications of Santa making his way south from the North Pole. Children who called were given updates on his location, and a tradition was born.&quot;<br />
<br />
Shoup must have had a hell of a sense of humor for a military man during the Cold War. The call actually came in on the <a rel="nofollow" class="t" href="http://www.noradsanta.org/media/audio/shoup.mp3" target="_blank">red phone</a>.<br />
<br />
CONAD was replaced by NORAD in 1958, and the tradition continued, each year using state-of-the-art technology to track Santa. Currently, the organization said it uses four high-tech systems to track Santa – radar, satellites (using the infrared signature from Rudolph's nose), Santa Cams, and fighter jets.<br />
<br />
Google got involved in 2004, before Keyhole Systems was even part of Google, and has since used Google Earth and Sketchup to help track Santa. In 2005, Google devoted 20 machines to the project, which let 250,000 people track Santa; in 2006, more than a million people tracked Santa. In 2007, Google became an official &quot;Santa tracking partner' and hosted the website, as well as adding YouTube videos, for several million people. <br />
<br />
Last year, Google said more than 8 million people tracked Santa.<br />
<br />
Until the Santa tracking actually starts, kids can watch a <a rel="nofollow" class="t" href="http://www.noradsanta.org/en/countdown.html" target="_blank">countdown</a>, including a series of almost two dozen games.<br />
<br />
Also beginning on December 24, people can send email to <a href="mailto:noradtrackssanta@gmail.com">noradtrackssanta@gmail.com</a>, where a NORAD staff member will provide Santa’s last known location in a return email.<br />
<br />
Low-tech people can call 1 877 HI-NORAD starting at 4 am MST on December 24 to talk directly to one of almost 1,250 Canadian and American uniformed personnel – Air Force, Army, Navy, and Marines, as well as DOD civilian and their families and friends – who volunteer their time on Christmas Eve to answer the thousands of phone calls and email messages.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum50.html">Social Media and Online Communities</category>
			<dc:creator>slfisher</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248600.html</guid>
		</item>
		<item>
			<title>Need Help Building Background Worker Thread</title>
			<link>http://www.daniweb.com/forums/thread248599.html</link>
			<pubDate>Wed, 23 Dec 2009 20:13:42 GMT</pubDate>
			<description><![CDATA[I'm writing a batch publishing program in VB.NET using VS2008. My program is a Windows form. 
 
The program spawns a process called "xtop". The process converts one CAD format to another. The conversion process demands heavy CPU cycles. 
 
The user will add "jobs" to the batch. The batch program...]]></description>
			<content:encoded><![CDATA[<div>I'm writing a batch publishing program in VB.NET using VS2008. My program is a Windows form.<br />
<br />
The program spawns a process called &quot;xtop&quot;. The process converts one CAD format to another. The conversion process demands heavy CPU cycles.<br />
<br />
The user will add &quot;jobs&quot; to the batch. The batch program will send one job to the publisher at a time. Each job is to be published using a worker thread in the background to make sure the UI (Windows form) doesn't get locked up. Its important that users can add jobs to the batch 24/7 while jobs are publishing in the background.<br />
<br />
I've never written a multi-threaded app in VB.NET. I'm having some difficulty formulating a strategy.<br />
<br />
I was planning to call the background worker thread using:<br />
<br />
 <pre style="margin:20px; line-height:13px">Dim pubThread As Thread = New Thread(AddressOf Me.backgroundPublishing)<br />
pubThread.Start()</pre><br />
Then in a private sub called backgroundPublishing() I was going to write this:<br />
<br />
 <pre style="margin:20px; line-height:13px">Using p As New Process<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; With p.StartInfo<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .FileName = proe<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .Arguments = cmd<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .UseShellExecute = False<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .CreateNoWindow = True<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .RedirectStandardInput = True<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .RedirectStandardOutput = True<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End With<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.Start()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.EnableRaisingEvents = True<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Debug.WriteLine(cmd)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.WaitForExit()<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.Close()<br />
End Using</pre><br />
The problem is that the main thread controls the batching. It basically loops through all the jobs that have been added to the batch (a list box).<br />
<br />
I was planning to &quot;freeze&quot; the loop with a nested while loop that &quot;watches&quot; my &quot;xtop&quot; process until the background worker process is done. This will prevent multiple jobs from being sent to the worker thread (and multiple &quot;xtop&quot; processes from spawning).<br />
<br />
 <pre style="margin:20px; line-height:13px">While Process.GetProcessesByName(&quot;xtop&quot;).Length &gt; 0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'xtop process running<br />
End While</pre><br />
Thus, once the first job is run (and the corresponding &quot;xtop&quot; process ends in the worker thread) program control resumes with and the next job is sent to the worker thread.<br />
<br />
There is one major problem though. The While loop &quot;feezes&quot; the UI (Windows form) so that new jobs can't be added. Which, of course, defeats the purpose of sending the worker process to its own thread.<br />
<br />
Can someone please explain a good way to program something like this? I'd simply like to make the UI accessible at all times while running CPU intensive CAD conversions in the background. Thank you!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>rfrei</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248599.html</guid>
		</item>
		<item>
			<title>Simple DropDownList in DataGridView</title>
			<link>http://www.daniweb.com/forums/thread248598.html</link>
			<pubDate>Wed, 23 Dec 2009 19:52:11 GMT</pubDate>
			<description><![CDATA[I'm trying to insert values into dropdownlist that placed in datagridview - itemtemplate dynamically. 
I'v typed: 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680"...]]></description>
			<content:encoded><![CDATA[<div>I'm trying to insert values into dropdownlist that placed in datagridview - itemtemplate dynamically.<br />
I'v typed:<br />
 <pre style="margin:20px; line-height:13px">DropDownList dd=(DropDownList)gridViewRowVar.FindControl(&quot;techniciansDDL&quot;);<br />
dd.Items.Add(&quot;ddd&quot;);</pre>and there's a problem:  System.NullReferenceException was unhandled by user code, and something like:<br />
The reference to the object had not been classified to the event of the object.<br />
The error is just on runtime,<br />
icant understand why its so complicated to insert a simpal information into ddl. plz help~!<br />
<br />
Tell me if i wasnt clear!!!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum18.html">ASP.NET</category>
			<dc:creator>Corpes</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248598.html</guid>
		</item>
		<item>
			<title>Add a function to original PHP source code</title>
			<link>http://www.daniweb.com/forums/thread248597.html</link>
			<pubDate>Wed, 23 Dec 2009 19:40:00 GMT</pubDate>
			<description><![CDATA[Theres a functionality that I need that is not built into the PHP source code. 
 
I would like to modify a .c file in the code, recompile, and then be able to execute the php function with the same name as the one I added to the .c in my .php file. 
 
How would I go about doing this? 
 
I'm aiming...]]></description>
			<content:encoded><![CDATA[<div>Theres a functionality that I need that is not built into the PHP source code.<br />
<br />
I would like to modify a .c file in the code, recompile, and then be able to execute the php function with the same name as the one I added to the .c in my .php file.<br />
<br />
How would I go about doing this?<br />
<br />
I'm aiming to add FXP (site-to-site) transfer ability to the existing ftp.c file in php-5.3.1/ext/ftp<br />
<br />
<br />
Also, how would I go about testing these changes without actually having to recompile php every change I make?<br />
<br />
Thanks for the help in advance.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>TheWhite</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248597.html</guid>
		</item>
		<item>
			<title>want a website made for my pet dog tag business</title>
			<link>http://www.daniweb.com/forums/thread248596.html</link>
			<pubDate>Wed, 23 Dec 2009 19:39:38 GMT</pubDate>
			<description>Looking to have a website made e-commerce with samples of the different tag styles</description>
			<content:encoded><![CDATA[<div>Looking to have a website made e-commerce with samples of the different tag styles</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum164.html">Websites for Sale</category>
			<dc:creator>mark6899</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248596.html</guid>
		</item>
		<item>
			<title>WIN32:C or C++?</title>
			<link>http://www.daniweb.com/forums/thread248594.html</link>
			<pubDate>Wed, 23 Dec 2009 19:24:36 GMT</pubDate>
			<description><![CDATA[Hey everyone, since nobody has decided to assist me in my problems, I guess I have to throw it at you guys this way: 
I am using Visual C++ 2008 Express edition, I have a win32 tutorial that I'm using, and I'm saving my files as .cpp. 
However, the codes in the tutorial are saved in .c, and they...]]></description>
			<content:encoded><![CDATA[<div>Hey everyone, since nobody has decided to assist me in my problems, I guess I have to throw it at you guys this way:<br />
I am using Visual C++ 2008 Express edition, I have a win32 tutorial that I'm using, and I'm saving my files as .cpp.<br />
However, the codes in the tutorial are saved in .c, and they compile successfully, but mine do not. Is saving my files as .cpp the problem?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>tkud</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248594.html</guid>
		</item>
		<item>
			<title>VB.net oledb problem: database tables are empty</title>
			<link>http://www.daniweb.com/forums/thread248593.html</link>
			<pubDate>Wed, 23 Dec 2009 19:24:16 GMT</pubDate>
			<description><![CDATA[I apologize for not knowing the proper terminology. I'm trying to connect to a database, and the tables appear, but there are no entries in them! What did I do wrong? 
 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>I apologize for not knowing the proper terminology. I'm trying to connect to a database, and the tables appear, but there are no entries in them! What did I do wrong?<br />
<br />
 <pre style="margin:20px; line-height:13px">&nbsp; Dim MyConnection As OleDb.OleDbConnection<br />
&nbsp; &nbsp; Dim MyAdapter As OleDb.OleDbDataAdapter<br />
&nbsp; &nbsp; Dim MyCommand As OleDb.OleDbCommand<br />
&nbsp; &nbsp; Dim StrConn As String<br />
&nbsp; &nbsp; Dim StrSql As String<br />
<br />
StrConn = &quot;Provider=Microsoft.Jet.OLEDB.4.0;&quot; &amp; &quot;Data Source= C:\Documents and Settings\STAGINFO\Mes documents\db1.mdb&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyConnection = New OleDb.OleDbConnection<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyConnection.ConnectionString = StrConn<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyConnection.Open()<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; StrSql = &quot;SELECT Accessoires.* FROM Accessoires&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand = New OleDb.OleDbCommand(StrSql)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter = New OleDb.OleDbDataAdapter(MyCommand)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand.Connection() = MyConnection<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter.Fill(Base, &quot;Acc&quot;)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; StrSql = &quot;SELECT Emprunteurs.* FROM Emprunteurs&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand = New OleDb.OleDbCommand(StrSql)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter = New OleDb.OleDbDataAdapter(MyCommand)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand.Connection() = MyConnection<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter.Fill(Base, &quot;Emp&quot;)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; StrSql = &quot;SELECT Historiques.* FROM Historiques&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand = New OleDb.OleDbCommand(StrSql)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter = New OleDb.OleDbDataAdapter(MyCommand)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand.Connection() = MyConnection<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter.Fill(Base, &quot;His&quot;)<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; StrSql = &quot;SELECT Materiels.* FROM Materiels&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand = New OleDb.OleDbCommand(StrSql)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter = New OleDb.OleDbDataAdapter(MyCommand)<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyCommand.Connection() = MyConnection<br />
&nbsp; &nbsp; &nbsp; &nbsp; MyAdapter.Fill(Base, &quot;Mat&quot;)<br />
<br />
&nbsp;  Me.DataGrid1.DataSource = Base.Tables(0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; Me.DataGrid2.DataSource = Base.Tables(1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; Me.DataGrid3.DataSource = Base.Tables(2)<br />
&nbsp; &nbsp; &nbsp; &nbsp; Me.DataGrid4.DataSource = Base.Tables(3)</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>staginfo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248593.html</guid>
		</item>
		<item>
			<title>css inside noscript tags</title>
			<link>http://www.daniweb.com/forums/thread248587.html</link>
			<pubDate>Wed, 23 Dec 2009 18:45:47 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I want to apply a different style to my site if javascript is disabled to the user experience is unaltered. 
 
I'm using PHP so is there a method i could employ? - i know there isn't a specific javascript detection function within php itself. 
 
i would just put a noscript tag in the <head>...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I want to apply a different style to my site if javascript is disabled to the user experience is unaltered.<br />
<br />
I'm using PHP so is there a method i could employ? - i know there isn't a specific javascript detection function within php itself.<br />
<br />
i would just put a noscript tag in the &lt;head&gt; but that doesn't validate so might be unstable<br />
<br />
Any help would be greatly appreciated.<br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum143.html">HTML and CSS</category>
			<dc:creator>EvilOrange</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248587.html</guid>
		</item>
		<item>
			<title>Referenced Multidimensional Arrays are probably a bad idea</title>
			<link>http://www.daniweb.com/forums/thread248586.html</link>
			<pubDate>Wed, 23 Dec 2009 18:45:44 GMT</pubDate>
			<description><![CDATA[Hello! I'm working on this roguelike and I'm trying to make it so that the different "maps" can be loaded from text files. It was going pretty good until I tried to get it to return the filled array. Take a look: 
  <div class="codeblock"> <div class="spaced"> <div style="float:right;...]]></description>
			<content:encoded><![CDATA[<div>Hello! I'm working on this roguelike and I'm trying to make it so that the different &quot;maps&quot; can be loaded from text files. It was going pretty good until I tried to get it to return the filled array. Take a look:<br />
 <pre style="margin:20px; line-height:13px">void getMap(string str[10][10]){<br />
&nbsp; ifstream myfile(&quot;world1.txt&quot;);<br />
&nbsp; &nbsp; int a = 0;<br />
&nbsp; &nbsp; int b = 0;<br />
&nbsp;<br />
&nbsp; &nbsp; while(!myfile.eof())<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; getline(myfile,str[a][b],' ');<br />
&nbsp; &nbsp; &nbsp; if(a ==9)<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  a=0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  ++b;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  getline(myfile,str[a][b],' ');<br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; a++;<br />
&nbsp; &nbsp; }<br />
}<br />
<br />
<br />
int main(){<br />
&nbsp; &nbsp; &nbsp; &nbsp;  string map[10][10];<br />
&nbsp; &nbsp; &nbsp; &nbsp;  getMap(&amp;map);<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp;  system(&quot;PAUSE&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  return 0;<br />
}</pre>So I'm trying to copy the completed array &quot;str&quot; at the end of function &quot;getMap&quot; into array &quot;map&quot;. I would've thought this code would work, but when I try to compile I get &quot;<span style="font-weight:bold">error C2664: 'getMap' : cannot convert parameter 1 from 'std::string (*)[10][10]' to 'std::string [][10]'<br />
1&gt;        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast&quot;</span><br />
<br />
Any suggestions?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum8.html">C++</category>
			<dc:creator>Waylon</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248586.html</guid>
		</item>
		<item>
			<title>javascript to validate 2 text boxes</title>
			<link>http://www.daniweb.com/forums/thread248585.html</link>
			<pubDate>Wed, 23 Dec 2009 18:30:49 GMT</pubDate>
			<description>hi 
 
i want to do validation on two textboxes on my website i am creating. i want to make sure something is entered in each box before the user can proceed. the two textboxes are called teammanager and teamname and are in the form called addteam. 
 
the code i have done only seem to check the...</description>
			<content:encoded><![CDATA[<div>hi<br />
<br />
i want to do validation on two textboxes on my website i am creating. i want to make sure something is entered in each box before the user can proceed. the two textboxes are called teammanager and teamname and are in the form called addteam.<br />
<br />
the code i have done only seem to check the first text box and i am new to javascript and cannot workout whats wrong with my code.  below is my code help would be much appreciated<br />
<br />
function Length_TextField_Validator()<br />
{<br />
	// Check the length of the value of the teamname and teammanager<br />
	if ((addteam.teamname.value.length &lt; 3) || (addteam.teamname.value.length &gt; 20))<br />
		{<br />
		// alert box message<br />
		mesg = &quot;You have entered &quot; + addteam.teamname.value.length + &quot; character(s)\n&quot;<br />
		mesg = mesg + &quot;Valid entries are between 3 and 20 characters for team name.\n&quot;<br />
		alert(mesg);<br />
		// Place the cursor on the field<br />
		addteam.teamname.focus();<br />
		// return false to stop user going any further<br />
		return (false);<br />
	}<br />
	else if ((addteam.teamamanger.value.length &lt; 3) || (addteam.teammanager.value.length &gt; 20))<br />
		{<br />
		mesg = &quot;You have entered &quot; + addteam.teammanager.value.length + &quot; character(s)\n&quot;<br />
		mesg = mesg + &quot;Valid entries are between 3 and 20 characters for team manager\n&quot;<br />
		alert(mesg);<br />
		// Place the cursor on the field<br />
		addteam.teammanager.focus();<br />
		// return false to stop user going any further<br />
		return (false);<br />
	} <br />
	else {<br />
	// If teamname and teammanager is not null continue processing<br />
	return (true);<br />
	}<br />
}</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>ryan1987</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248585.html</guid>
		</item>
		<item>
			<title>No copy/paste</title>
			<link>http://www.daniweb.com/forums/thread248608.html</link>
			<pubDate>Wed, 23 Dec 2009 18:29:17 GMT</pubDate>
			<description><![CDATA[I've got a problem with copy-paste that seems more global than any other problems that I've seen reported by others.  The ability to paste just suddenly quit working across the board.  It doesn't matter whether I do it through command keys (Ctrl-C/Ctrl-V) or from the right-click menu.  On the...]]></description>
			<content:encoded><![CDATA[<div>I've got a problem with copy-paste that seems more global than any other problems that I've seen reported by others.  The ability to paste just suddenly quit working across the board.  It doesn't matter whether I do it through command keys (Ctrl-C/Ctrl-V) or from the right-click menu.  On the right-click menu 'Paste' is always greyed out.  Doesn't matter what application I'm in or what type of data I'm trying to copy/paste (text, images, PrtSc, whatever).  I've run a complete scan of my computer and found no threats.  I've rebooted a couple times.  Nothing fixes it.  <br />
<br />
Any ideas?  Anybody?  I never appreciated how much I used copy/paste until it quit working!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum10.html">Windows NT / 2000 / XP</category>
			<dc:creator>mentor24</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248608.html</guid>
		</item>
		<item>
			<title>How to force include/require to reload latest verion</title>
			<link>http://www.daniweb.com/forums/thread248584.html</link>
			<pubDate>Wed, 23 Dec 2009 18:24:42 GMT</pubDate>
			<description><![CDATA[I have a situation where I am updating a config file and I need a following include('config.php') to pick up the latest version of the file. 
 
Presently what I am getting is that the include picks up the previous version that had been included earlier. 
 
Here the scenario 
index.php: 
 
<?php...]]></description>
			<content:encoded><![CDATA[<div>I have a situation where I am updating a config file and I need a following include('config.php') to pick up the latest version of the file.<br />
<br />
Presently what I am getting is that the include picks up the previous version that had been included earlier.<br />
<br />
Here the scenario<br />
index.php:<br />
 <pre style="margin:20px; line-height:13px">&lt;?php<br />
include_once('inc1.php');<br />
...<br />
include('inc2.php');<br />
?&gt;</pre><br />
inc1.php:<br />
 <pre style="margin:20px; line-height:13px">&lt;?php<br />
&nbsp; &nbsp; &nbsp; &nbsp; $fname = 'inc2.php'; <br />
&nbsp; &nbsp; &nbsp; &nbsp; require($fname);<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; $handle = fopen($fname, 'w');<br />
&nbsp; &nbsp; &nbsp; &nbsp; fwrite($handle, &quot;&lt;p&gt;&lt;?php echo 'in inc2 - written on &quot;.date('Y-m-d H:i:s:u').&quot; - now it is '; echo(date('Y-m-d H:i:s:u'));&quot;.&quot;?&gt;&lt;/p&gt;\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; fclose($handle);<br />
?&gt;</pre><br />
and in inc2.php (original):<br />
 <pre style="margin:20px; line-height:13px">&lt;h1&gt;&lt;?php echo 'in inc2'; ?&gt;&lt;/h1&gt;</pre><br />
so what you have is that the first include_once of inc1 forces the include of inc2, which then gets updated. But when back in the main page, the include of inc2 now just brings the version that was loaded at the top of inc1, not the updated version.<br />
<br />
Thanks,<br />
Alain</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>apicard80</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248584.html</guid>
		</item>
		<item>
			<title>What does BIOS do AFTER the OS has been loaded?</title>
			<link>http://www.daniweb.com/forums/thread248583.html</link>
			<pubDate>Wed, 23 Dec 2009 18:09:24 GMT</pubDate>
			<description>What does BIOS do on modern PCs after the operating system is loaded and running?</description>
			<content:encoded><![CDATA[<div>What does BIOS do on modern PCs after the operating system is loaded and running?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum14.html">Computer Science</category>
			<dc:creator>mahela007</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248583.html</guid>
		</item>
		<item>
			<title>- web scraping using python</title>
			<link>http://www.daniweb.com/forums/thread248580.html</link>
			<pubDate>Wed, 23 Dec 2009 17:56:34 GMT</pubDate>
			<description><![CDATA[Hi ,  
Im trying  to extract the number 7.2 from the html string below using python: 
 
'''<a href="/ratings_explained">weighted average</a> vote of <a href="/List?ratings=7">7.2</a> / 10</p><p>''' 
 
I thought this would be code to do this .But  how come this doesnt work ? 
 
averageget =...]]></description>
			<content:encoded><![CDATA[<div>Hi , <br />
Im trying  to extract the number 7.2 from the html string below using python:<br />
<br />
'''&lt;a href=&quot;/ratings_explained&quot;&gt;weighted average&lt;/a&gt; vote of &lt;a href=&quot;/List?ratings=7&quot;&gt;7.2&lt;/a&gt; / 10&lt;/p&gt;&lt;p&gt;'''<br />
<br />
I thought this would be code to do this .But  how come this doesnt work ?<br />
<br />
averageget = re.compile('&lt;a href=&quot;/List?ratings=7&quot;&gt;(.*?)&lt;/a&gt;')<br />
average = averageget.findall(htmlr)<br />
<br />
Could it be that there some special structures in the html file which I missed out ?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum114.html">Python</category>
			<dc:creator>masterinex</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248580.html</guid>
		</item>
		<item>
			<title>Using Select Statement</title>
			<link>http://www.daniweb.com/forums/thread248579.html</link>
			<pubDate>Wed, 23 Dec 2009 17:52:42 GMT</pubDate>
			<description><![CDATA[Any body please help me , how to use the Sql Statement  "Select max(column.A) from TBL_table" using asp.net in C# platform and I also want the result(the maximum number ) to insert onto a text box.]]></description>
			<content:encoded><![CDATA[<div>Any body please help me , how to use the Sql Statement  &quot;Select max(column.A) from TBL_table&quot; using asp.net in C# platform and I also want the result(the maximum number ) to insert onto a text box.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum18.html">ASP.NET</category>
			<dc:creator>mahmud.riyadh</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248579.html</guid>
		</item>
		<item>
			<title>Hey guys</title>
			<link>http://www.daniweb.com/forums/thread248578.html</link>
			<pubDate>Wed, 23 Dec 2009 17:52:31 GMT</pubDate>
			<description><![CDATA[Hey guys, what's up... 
 
I'm a developer, learning about iphone and macos dev technologies, and updating my .NET skills 
 
i you need any help working with php feel free to ask me...]]></description>
			<content:encoded><![CDATA[<div>Hey guys, what's up...<br />
<br />
I'm a developer, learning about iphone and macos dev technologies, and updating my .NET skills<br />
<br />
i you need any help working with php feel free to ask me...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum165.html">Community Introductions</category>
			<dc:creator>DiegoRA</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248578.html</guid>
		</item>
		<item>
			<title>Vehicle Register</title>
			<link>http://www.daniweb.com/forums/thread248576.html</link>
			<pubDate>Wed, 23 Dec 2009 17:49:54 GMT</pubDate>
			<description><![CDATA[my task is to create a gui for a list of cars, bus,bicycle etc. and the program should be able to add and remove to the car in store. so i wrote this code below using netbeans IDE.  
 
 
 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>my task is to create a gui for a list of cars, bus,bicycle etc. and the program should be able to add and remove to the car in store. so i wrote this code below using netbeans IDE. <br />
<br />
<br />
<br />
 <pre style="margin:20px; line-height:13px">package vehicleregister;<br />
import java.awt.*;<br />
import java.awt.event.*;<br />
public class VehicleRegister extends Frame implements WindowListener,ActionListener {<br />
&nbsp; &nbsp; private Label label1;<br />
&nbsp; &nbsp; private Label label2;<br />
&nbsp; &nbsp; private Label label3;<br />
&nbsp; &nbsp; private Label label4;<br />
&nbsp; &nbsp; private Label label5;<br />
&nbsp; &nbsp; private Label label6;<br />
&nbsp; &nbsp; private Label label7;<br />
&nbsp; &nbsp; private Button btnAddBuss;<br />
&nbsp; &nbsp; private Button btnRemoveBuss;<br />
&nbsp; &nbsp; private Button btnAddCar;<br />
&nbsp; &nbsp; private Button btnRemoveCar;<br />
&nbsp; &nbsp; private Button btnAddVan;<br />
&nbsp; &nbsp; private Button btnRemoveVan;<br />
&nbsp; &nbsp; private Button btnAddBicycle;<br />
&nbsp; &nbsp; private Button btnRemoveBicycle;<br />
&nbsp; &nbsp; private Button btnAddOthers;<br />
&nbsp; &nbsp; private Button btnRemoveOthers;<br />
&nbsp; &nbsp; private List stock;<br />
&nbsp; &nbsp; private int carCount=50;<br />
&nbsp; &nbsp; private int bussCount=40;<br />
&nbsp; &nbsp; private int vanCount=60;<br />
&nbsp; &nbsp; private int bicycleCount=55;<br />
&nbsp; &nbsp; private int otherCount;<br />
&nbsp; &nbsp; private TextField tf;<br />
<br />
<br />
<br />
&nbsp; &nbsp; public VehicleRegister(String title){<br />
&nbsp; &nbsp; super(title);<br />
&nbsp; &nbsp; setBackground(SystemColor.YELLOW);<br />
&nbsp; &nbsp; addWindowListener(this);<br />
&nbsp; &nbsp; setLayout(null);<br />
<br />
&nbsp; &nbsp; label1=new Label(&quot;CLICK THE CORRESPONDING ADD OR REMOVE BUTTON FOR THE TYPE&quot;);<br />
&nbsp; &nbsp; label1.setBounds(55,50,450,30);<br />
&nbsp; &nbsp; add(label1);<br />
<br />
&nbsp; &nbsp; label2=new Label(&quot;OF VEHICLE YOU WANT TO ADD TO, OR REMOVE FROM THOSE IN STOCK&quot;);<br />
&nbsp; &nbsp; label2.setBounds(55,70,450,30);<br />
&nbsp; &nbsp; this.add(label2);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnAddBuss=new Button(&quot;ADD&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnAddBuss.setBounds(150,120,50,30);<br />
&nbsp; &nbsp; &nbsp;  btnAddBuss.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnAddBuss);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBuss=new Button(&quot;REMOVE&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBuss.setBounds(250,120,60,30);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBuss.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnRemoveBuss);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnAddCar=new Button(&quot;ADD&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnAddCar.setBounds(150,160,50,30);<br />
&nbsp; &nbsp; &nbsp;  btnAddCar.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnAddCar);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnRemoveCar=new Button(&quot;REMOVE&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveCar.setBounds(250,160,60,30);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveCar.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnRemoveCar);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnAddVan=new Button(&quot;ADD&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnAddVan.setBounds(150,200,50,30);<br />
&nbsp; &nbsp; &nbsp;  btnAddVan.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnAddVan);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnRemoveVan=new Button(&quot;REMOVE&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveVan.setBounds(250,200,60,30);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveVan.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnRemoveVan);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnAddBicycle=new Button(&quot;ADD&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnAddBicycle.setBounds(150,240,50,30);<br />
&nbsp; &nbsp; &nbsp;  btnAddBicycle.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnAddBicycle);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBicycle=new Button(&quot;REMOVE&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBicycle.setBounds(250,240,60,30);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveBicycle.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnRemoveBicycle);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnAddOthers=new Button(&quot;ADD&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnAddOthers.setBounds(150,280,50,30);<br />
&nbsp; &nbsp; &nbsp;  btnAddOthers.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnAddOthers);<br />
<br />
&nbsp; &nbsp; &nbsp;  btnRemoveOthers=new Button(&quot;REMOVE&quot;);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveOthers.setBounds(250,280,60,30);<br />
&nbsp; &nbsp; &nbsp;  btnRemoveOthers.addActionListener(this);<br />
&nbsp; &nbsp; &nbsp;  add(btnRemoveOthers);<br />
<br />
&nbsp; &nbsp; &nbsp;  label3=new Label(&quot;BUSS&quot;);<br />
&nbsp; &nbsp; &nbsp;  label3.setBounds(55,120,60,30);<br />
&nbsp; &nbsp; &nbsp;  add(label3);<br />
<br />
&nbsp; &nbsp; &nbsp;  label4=new Label(&quot;CAR&quot;);<br />
&nbsp; &nbsp; &nbsp;  label4.setBounds(55,160,60,30);<br />
&nbsp; &nbsp; &nbsp;  add(label4);<br />
<br />
&nbsp; &nbsp; &nbsp;  label5=new Label(&quot;VAN&quot;);<br />
&nbsp; &nbsp; &nbsp;  label5.setBounds(55,200,60,30);<br />
&nbsp; &nbsp; &nbsp;  add(label5);<br />
<br />
&nbsp; &nbsp; &nbsp;  label6=new Label(&quot;BICYCLE&quot;);<br />
&nbsp; &nbsp; &nbsp;  label6.setBounds(55,240,60,30);<br />
&nbsp; &nbsp; &nbsp;  add(label6);<br />
<br />
&nbsp; &nbsp; &nbsp;  label7=new Label(&quot;OTHER&quot;);<br />
&nbsp; &nbsp; &nbsp;  label7.setBounds(55,280,60,30);<br />
&nbsp; &nbsp; &nbsp;  add(label7);<br />
<br />
&nbsp; &nbsp; &nbsp;  stock=new List();<br />
&nbsp; &nbsp; &nbsp;  stock.setBounds(25,320,500,50);<br />
&nbsp; &nbsp; &nbsp;  add(stock);<br />
&nbsp; &nbsp; &nbsp;  tf= new TextField();<br />
&nbsp; &nbsp; &nbsp;  add(tf);<br />
&nbsp; &nbsp; &nbsp;  tf.setBounds(350,120,150,60);<br />
<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; public static void main(String[] args) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; VehicleRegister frame = new VehicleRegister(&quot;VEHICLE REGISTER APPLICATION&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; frame.setSize(550,400);<br />
&nbsp; &nbsp; &nbsp; &nbsp; frame.setLocation(450,250);<br />
&nbsp; &nbsp; &nbsp; &nbsp; frame.setVisible(true);<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; public void windowActivated(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowClosed(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowClosing(WindowEvent e) {<br />
&nbsp; &nbsp; &nbsp;  dispose();<br />
&nbsp; &nbsp; &nbsp;  System.exit(0);<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowDeactivated(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowDeiconified(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowIconified(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; public void windowOpened(WindowEvent e) {<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; public void actionPerformed(ActionEvent e) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; int input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (e.getSource()==btnAddBuss)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bussCount=input + bussCount;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnRemoveBuss)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  bussCount=bussCount&nbsp; - input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnAddCar)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  carCount=input + carCount;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ ++carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnRemoveCar)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  carCount=carCount&nbsp; -&nbsp; input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnAddVan)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vanCount=input + vanCount;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnRemoveVan)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  vanCount=vanCount&nbsp; - input;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else if (e.getSource()==btnAddBicycle)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  bicycleCount=input + bicycleCount;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  else if (e.getSource()==btnRemoveBicycle)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bicycleCount=bicycleCount - input;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  else if (e.getSource()==btnAddOthers)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; otherCount=input + otherCount;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp;  else if (e.getSource()==btnRemoveOthers)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input=Integer.parseInt(tf.getText());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  otherCount=otherCount - input;<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.removeAll();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stock.add(&quot;VEHICLES NOW IN STOCK&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BUS&nbsp; &nbsp;  &quot;+ bussCount);stock.add(&quot;CAR&nbsp; &nbsp;  &quot;+ carCount);stock.add(&quot;VAN&nbsp; &nbsp;  &quot;+ vanCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp;  stock.add(&quot;BICYCLE&nbsp; &nbsp;  &quot;+ bicycleCount);stock.add(&quot;OTHER VEHICLE TYPE&nbsp; &nbsp; &quot;+ otherCount);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; }<br />
<br />
<br />
}</pre><br />
But my task is to Use android environment but I dont know how to go about it. can anyone help me out?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum9.html">Java</category>
			<dc:creator>emmas4impact</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248576.html</guid>
		</item>
		<item>
			<title>New to Java and Forums</title>
			<link>http://www.daniweb.com/forums/thread248575.html</link>
			<pubDate>Wed, 23 Dec 2009 17:31:08 GMT</pubDate>
			<description>Hey everyone, this is my first of what I plan on being many posts. I am just getting into java, this is my first programming language. I am trying to learn how to use the java.awt. package to do graphics, can anyone point me in the right way to learn how to use java to make graphics? thank you in...</description>
			<content:encoded><![CDATA[<div>Hey everyone, this is my first of what I plan on being many posts. I am just getting into java, this is my first programming language. I am trying to learn how to use the java.awt. package to do graphics, can anyone point me in the right way to learn how to use java to make graphics? thank you in advance.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum9.html">Java</category>
			<dc:creator>Broker</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248575.html</guid>
		</item>
		<item>
			<title>Printing via Bluetooth</title>
			<link>http://www.daniweb.com/forums/thread248574.html</link>
			<pubDate>Wed, 23 Dec 2009 17:26:59 GMT</pubDate>
			<description>Does anyone know a software package similar to http://www.tucows.com/preview/336102 
 
but works for Windows PCs?  
 
I do not have a Bluetooth enabled printer or Bluetooth printing adapter, which is why I am inquiring about a software based solution. I do have a Bluetooth enabled PC. 
 
Thank you.</description>
			<content:encoded><![CDATA[<div>Does anyone know a software package similar to <a rel="nofollow" class="t" href="http://www.tucows.com/preview/336102" target="_blank">http://www.tucows.com/preview/336102</a><br />
<br />
but works for Windows PCs? <br />
<br />
I do not have a Bluetooth enabled printer or Bluetooth printing adapter, which is why I am inquiring about a software based solution. I do have a Bluetooth enabled PC.<br />
<br />
Thank you.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum92.html">Windows Software</category>
			<dc:creator>Dukane</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248574.html</guid>
		</item>
		<item>
			<title>How do I make a website link not a pop up?</title>
			<link>http://www.daniweb.com/forums/thread248569.html</link>
			<pubDate>Wed, 23 Dec 2009 17:07:47 GMT</pubDate>
			<description><![CDATA[Can someone tell me what I am doing wrong? I have tried all the coding and it acts as a pop up when you click enter site.  
 
Here is the coding for the form: 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>Can someone tell me what I am doing wrong? I have tried all the coding and it acts as a pop up when you click enter site. <br />
<br />
Here is the coding for the form:<br />
 <pre style="margin:20px; line-height:13px">&lt;form method=&quot;GET&quot; action=&quot;http://www.rotatemarketing.com/home.html&quot; target=&quot;_parent&quot;&gt;<br />
<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;acctid&quot; id=&quot;acctid&quot; value=&quot;qgdtcj4r6lpmrn1i&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;formid&quot; id=&quot;formid&quot; value=&quot;704007&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;input type=&quot;hidden&quot; name=&quot;&quot; id=&quot;&quot; value=&quot;name,email&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; `&lt;p&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font size=&quot;3&quot;&gt;First Name:&lt;/font&gt; &lt;input type=&quot;text&quot; name=&quot;first&quot; /&gt;&lt;br /&gt;&lt;br /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font size=&quot;3&quot;&gt;Last Name:&lt;/font&gt; &lt;input type=&quot;text&quot; name=&quot;Last&quot; /&gt;&lt;br /&gt;&lt;br /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font size=&quot;3&quot;&gt;Email:&lt;/font&gt; &lt;input type=&quot;text&quot; name=&quot;email&quot; /&gt;&lt;br /&gt;&lt;br /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font size=&quot;3&quot;&gt;Phone:&lt;/font&gt; &lt;input type=&quot;text&quot; name=&quot;number&quot; /&gt;&lt;br /&gt;&lt;br /&gt;<br />
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;input type=&quot;submit&quot; value=&quot;enter site&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&lt;/form&gt;<br />
&lt;br&gt;&lt;center&gt;&lt;font face=&quot;Arial, Helvetica&quot; size=&quot;1&quot;&gt;&lt;/font&gt;&lt;/center&gt;<br />
&lt;!-- End Form --&gt;</pre><br />
Here is the coding for the rotating web page:<br />
 <pre style="margin:20px; line-height:13px"> <br />
&nbsp; &nbsp; &nbsp; &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;html lang=&quot;en&quot;&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;head&gt;<br />
&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=us-ascii&quot;&gt;<br />
&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &lt;title&gt;Rotate Marketing&lt;/title&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;script src=&quot;cookies.js&quot; type=&quot;text/javascript&quot;&gt;function createCookie(name,value,days) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; if (days) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var date = new Date();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; date.setTime(date.getTime()+(days*24*60*60*1000));<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var expires = &quot;; expires=&quot;+date.toGMTString();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else var expires = &quot;&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; document.cookie = name+&quot;=&quot;+value+expires+&quot;; path=/&quot;;<br />
}<br />
<br />
function readCookie(name) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; var nameEQ = name + &quot;=&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; var ca = document.cookie.split(';');<br />
&nbsp; &nbsp; &nbsp; &nbsp; for(var i=0;i &lt; ca.length;i++) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var c = ca[i];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; while (c.charAt(0)==' ') c = c.substring(1,c.length);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; return null;<br />
}<br />
<br />
function eraseCookie(name) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; createCookie(name,&quot;&quot;,-1);<br />
}<br />
&lt;/script&gt;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;script type=&quot;text/javascript&quot;&gt;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;!--<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; var Win;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; var page_index = 0;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; var page = new Array();<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; page[ page.length ] = &quot;http://www.homebiz.usaloe.com&quot;;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; page[ page.length ] = &quot;http://www.makethatmoney.usaloe.com&quot;;<br />
&nbsp; <br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; var next_page = function(){<br />
<br />
&nbsp; &nbsp; &nbsp;  <br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; //page_index = (( page_index === 8 ) ? 0 : page_index );<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; page_index=++page_index % page.length;<br />
<br />
&nbsp; &nbsp; &nbsp; if ( typeof Win !== &quot;undefined&quot; ) {<br />
<br />
&nbsp; &nbsp; &nbsp;  <br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; Win.location.href = page[ page_index ];<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; createCookie(&quot;lastPage&quot;,page_index,30);<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; };<br />
<br />
&nbsp; &nbsp; &nbsp; window.onload = function() {<br />
<br />
&nbsp; &nbsp; &nbsp; page_index=readCookie(&quot;lastPage&quot;);<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; if(null===page_index) <br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; page_index=0;<br />
<br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; else<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; page_index=++page_index % page.length;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; createCookie(&quot;lastPage&quot;,page_index,30);<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; Win = window.open( page[ page_index ], 'Win', 'resize=yes,toolbar=yes, status=yes,scrollbars=yes, screenX=0,screenY=0, width=1000, height=666' );<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; timer = setInterval( &quot;next_page()&quot;, 10000000 );<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; };<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; // --&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;/script&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;/head&gt;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;body&gt;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &lt;/body&gt;<br />
&nbsp; <br />
&nbsp; &nbsp; &nbsp; &lt;/html&gt;</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum117.html">JavaScript / DHTML / AJAX</category>
			<dc:creator>jreddick82</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248569.html</guid>
		</item>
		<item>
			<title>How to create search engine</title>
			<link>http://www.daniweb.com/forums/thread248568.html</link>
			<pubDate>Wed, 23 Dec 2009 17:05:22 GMT</pubDate>
			<description>How to create independent search engine like google? 
Without linking with google how to search images and videos?</description>
			<content:encoded><![CDATA[<div>How to create independent search engine like google?<br />
Without linking with google how to search images and videos?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum17.html">PHP</category>
			<dc:creator>vizz</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248568.html</guid>
		</item>
		<item>
			<title>News Story Word Injunction Likely Much Ado About Nothing</title>
			<link>http://www.daniweb.com/news/story248566.html</link>
			<pubDate>Wed, 23 Dec 2009 16:51:19 GMT</pubDate>
			<description>Yesterday, the Federal Appeals Court ruled (http://www.businessweek.com/technology/content/dec2009/tc20091222_416170.htm) in what appears at first blush to be a shocking decision, that Microsoft must stop selling Word 2007 by January 11, 2010. But a closer look at the decision suggests that this...</description>
			<content:encoded><![CDATA[<div>Yesterday, the <a rel="nofollow" class="t" href="http://www.businessweek.com/technology/content/dec2009/tc20091222_416170.htm" target="_blank">Federal Appeals Court ruled</a> in what appears at first blush to be a shocking decision, that Microsoft must stop selling Word 2007 by January 11, 2010. But a closer look at the decision suggests that this isn't as big a deal as it first seems. <br />
<br />
Sure, Microsoft has to pay Canadian developer <a rel="nofollow" class="t" href="http://www.i4i.com/" target="_blank">i4i</a> close to $300 million, but that's really chump change for a company that has tens of billions in cash reserves. Microsoft itself has tried to minimize the impact calling the disputed tool, &quot;a little used feature.&quot; Regardless, it appears, this has no impact on product already sold and the disputed code has been removed from upcoming Office 2010, leaving Microsoft with little real damage.<br />
<br />
<span style="font-weight:bold">Could Have Been Worse</span><br />
<br />
One thing Microsoft did by appealing was buy itself some time to get past the current version of Word and remove the feature in dispute. It could still have a short-term affect on sales, but most people at this point would probably be holding off until Office 2010. Doesn't really make sense to buy Word 2007 in any quantity that would matter to Microsoft with 2010 just around the corner. It remains to be seen if this would affect larger OEM partners like Dell and HP, but Microsoft insists that the delay has bought them enough time to remove the feature from Word 2007, and they will meet the deadline to remove it. If that's the case, Microsoft has had to spend some money, but doesn't really seem to be hurt too badly by all this.<br />
<br />
<span style="font-weight:bold">Is It Really as Minor as It Appears?</span><br />
<br />
Microsoft's <a rel="nofollow" class="t" href="http://www.microsoft.com/Presspass/press/2009/dec09/12-22statement.mspx" target="_blank">official statement</a> tries to suggest that the XML editing feature doesn't matter much, and that's true if you're an average user or a consumer running Word at home, but for companies the XML feature in Word 2007 changed the game and allowed enterprise customers to embed code to use Word documents in complex work flows and to communicate and move documents across disparate business systems. For them, the feature matters a lot, but again, since the ruling has no impact on packages already sold, it shouldn't really matter to customers who have been using this product for years and have built connectors to external systems using XML code covered under this decision.<br />
<br />
<span style="font-weight:bold">Makes Good Copy</span><br />
<br />
It's hard to point to a single product beyond Windows that would have a huge impact on a company as large and diverse as Microsoft, but Word comes close because it's a tool so many people use on a daily basis. When you see a headline suggesting they have to stop selling it, it makes you stop and think. Main stream press outlets certainly have jumped on this and tried to make it more than it is. <br />
<br />
In the end though, while this is probably embarrassing for Microsoft, it appears to be little more than a legal speed bump. Ultimately, there's nothing to see here folks. Let's move along.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum92.html">Windows Software</category>
			<dc:creator>Techwriter10</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248566.html</guid>
		</item>
		<item>
			<title>problem editing adodb recordset</title>
			<link>http://www.daniweb.com/forums/thread248565.html</link>
			<pubDate>Wed, 23 Dec 2009 16:38:40 GMT</pubDate>
			<description><![CDATA[I've created a recordset in VB Express 2008 as follows 
[code] 
rsmembers = New ADODB.Recordset 
with rsmembers 
            .Source = cn.Execute("SELECT * FROM members") 
            .ActiveConnection = cn 
 
            .CursorType = ADODB.CursorTypeEnum.adOpenDynamic 
            .LockType =...]]></description>
			<content:encoded><![CDATA[<div>I've created a recordset in VB Express 2008 as follows<br />
[code]<br />
rsmembers = New ADODB.Recordset<br />
with rsmembers<br />
            .Source = cn.Execute(&quot;SELECT * FROM members&quot;)<br />
            .ActiveConnection = cn<br />
<br />
            .CursorType = ADODB.CursorTypeEnum.adOpenDynamic<br />
            .LockType = ADODB.LockTypeEnum.adLockOptimistic<br />
            .CursorLocation = ADODB.CursorLocationEnum.adUseServer<br />
<br />
            .Open(&quot;members&quot;, Options:=ADODB.CommandTypeEnum.adCmdTableDirect)<br />
            .movefirst<br />
            .Fields(&quot;Active&quot;).Value = vbFalse<br />
[code]<br />
<br />
but the error window tells me that .fields(&quot;active&quot;) active is readonly. Tried using cursortype as adopenkeyset and tried without the Source property being set as well but same error.<br />
<br />
Can anybody tell me how to this please.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum58.html">VB.NET</category>
			<dc:creator>Bamboozled</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248565.html</guid>
		</item>
		<item>
			<title>BringToFront not working properly</title>
			<link>http://www.daniweb.com/forums/thread248564.html</link>
			<pubDate>Wed, 23 Dec 2009 16:36:13 GMT</pubDate>
			<description><![CDATA[I have form1(frmGate) and form2 (frmEdit) 
 
form1 minimizes when form2 is open and restores when form2 is closed 
 
however I use this to open form2 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>I have form1(frmGate) and form2 (frmEdit)<br />
<br />
form1 minimizes when form2 is open and restores when form2 is closed<br />
<br />
however I use this to open form2<br />
 <pre style="margin:20px; line-height:13px">private void btnEdit_Click(object sender, EventArgs e)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //checks to see if the form is open<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (editor == null || editor.IsDisposed == true)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; editor = new frmEdit();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; editor.InstanceRef = this;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Loads edit windows for selected Dealer<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; editor.dealerBindingSource.DataSource = this.dealerBindingSource;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; editor.dealerBindingSource.CurrencyManager.Position = Convert.ToInt32(dealerBindingNavigator.PositionItem.Text);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.WindowState = FormWindowState.Minimized;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; editor.Show();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</pre>but frmEdit does not come to front <br />
it is on desktop not minmized but comes up behind browser and such... <br />
<br />
tried to add frmEdit _Shown event<br />
<br />
 <pre style="margin:20px; line-height:13px">private void frmEdit_Shown(object sender, EventArgs e)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Make form&nbsp; active<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.Activate();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.BringToFront();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</pre>and <br />
 <pre style="margin:20px; line-height:13px">private void frmEdit_Shown(object sender, EventArgs e)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Make form&nbsp; active<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.TopMost = true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.Focus();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.BringToFront();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.TopMost = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }</pre><br />
and still it wont come to front... <br />
 I set frmEdit TopMost property to true in designer and removed the top line in code above but then it will not set the topmost to false and is always on top...<br />
<br />
I even tried the above code in the frmEdit_Load event and no joy<br />
<br />
Cant seem to understand why this is happening<br />
Any help would be much appreciated</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Dmennite</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248564.html</guid>
		</item>
		<item>
			<title>Repeated HDD Error Reported by RAID system</title>
			<link>http://www.daniweb.com/forums/thread248563.html</link>
			<pubDate>Wed, 23 Dec 2009 16:12:56 GMT</pubDate>
			<description>I am getting repeated HDD error reported by the RAID systems.  I am getting the HDDs replaced via warranty but this is happening too frequently tht I am thinking that something else is wrong.  I have had about 5 HHDs failures in the last 4 weeks.  As soon as I have rebuild one drive in the RAID 5...</description>
			<content:encoded><![CDATA[<div>I am getting repeated HDD error reported by the RAID systems.  I am getting the HDDs replaced via warranty but this is happening too frequently tht I am thinking that something else is wrong.  I have had about 5 HHDs failures in the last 4 weeks.  As soon as I have rebuild one drive in the RAID 5 set up, the next one fails.  It is not always the same port each either.<br />
<br />
I have RAID0 with 2 x 1Tb WD drives for the O/S and RAID5 with 4 x 640 Gb WD drives for the data.  All drives are SATA II. I use the Intel RAID controller which reports the disk read error and indicates to replace the drive.  It is happening for both the RAID0 and RAID5.  Could a fault with the  motherboard be causing this problem?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum105.html">Storage</category>
			<dc:creator>Rubicon Red</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248563.html</guid>
		</item>
		<item>
			<title>how do i</title>
			<link>http://www.daniweb.com/forums/thread248562.html</link>
			<pubDate>Wed, 23 Dec 2009 16:02:09 GMT</pubDate>
			<description>stored procudure or trigger</description>
			<content:encoded><![CDATA[<div>stored procudure or trigger</div>  <br /> <div style="padding:5px">    <fieldset class="fieldset"> <legend>Attached Images</legend> <table cellpadding="0" cellspacing="5" border="0"> <tr> <td><img class="inlineimg" src="http://www.daniweb.com/forums/images/attach/png.gif" alt="File Type: png" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=13034&amp;d=1261583987" target="_blank">dd.PNG</a> (41.2 KB)</td> </tr> </table> </fieldset>   </div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum127.html">MS SQL</category>
			<dc:creator>attman</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248562.html</guid>
		</item>
		<item>
			<title>GridView Sorting</title>
			<link>http://www.daniweb.com/forums/thread248559.html</link>
			<pubDate>Wed, 23 Dec 2009 15:56:30 GMT</pubDate>
			<description><![CDATA[Hi, I'm using web service wich return DataSet object .  
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a href="/forums/misc.php?do=explaincode&amp;TB_iframe=true&amp;height=400&amp;width=680" class="thickbox" title="Help with Code Tags" target="_blank">Help with...]]></description>
			<content:encoded><![CDATA[<div>Hi, I'm using web service wich return DataSet object . <br />
 <pre style="margin:20px; line-height:13px">localhost.Default Mse = new localhost.Default();<br />
&nbsp; &nbsp; &nbsp; &nbsp; DataSet ds = Mse.GetData();<br />
&nbsp; &nbsp; &nbsp; &nbsp; GridView1.DataSource = ds;<br />
&nbsp; &nbsp; &nbsp; &nbsp; GridView1.DataBind();</pre>How to set GridView control to be sorted by ID column (DESC) on page load?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum62.html">ASP</category>
			<dc:creator>ultras1</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248559.html</guid>
		</item>
		<item>
			<title>delphi resolution plz help me :(</title>
			<link>http://www.daniweb.com/forums/thread248557.html</link>
			<pubDate>Wed, 23 Dec 2009 15:50:55 GMT</pubDate>
			<description>*hi I want my delphi db programm to run automatically in resolution 1024.768 and when I close the programm it returens to previous resolution (windowes resolution)like the most games  
what should I do? *:(</description>
			<content:encoded><![CDATA[<div><span style="font-weight:bold">hi I want my delphi db programm to run automatically in resolution 1024.768 and when I close the programm it returens to previous resolution (windowes resolution)like the most games <br />
what should I do? </span>:(</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum124.html">Pascal and Delphi</category>
			<dc:creator>seto.girl</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248557.html</guid>
		</item>
		<item>
			<title>Applications support financial caculations</title>
			<link>http://www.daniweb.com/forums/thread248553.html</link>
			<pubDate>Wed, 23 Dec 2009 15:38:33 GMT</pubDate>
			<description>hi,  
I am interested in java based software/applications that can support complex financial calulations such as set processing, iterations and looping function. The objective is to use it while defining insurance calculation which can be complex by itself. The application should have built in set...</description>
			<content:encoded><![CDATA[<div>hi, <br />
I am interested in java based software/applications that can support complex financial calulations such as set processing, iterations and looping function. The objective is to use it while defining insurance calculation which can be complex by itself. The application should have built in set processing calculations.<br />
Can anyone help me and point me in the right directions. It can be either free or commercial applications.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum9.html">Java</category>
			<dc:creator>HakkaBukka</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248553.html</guid>
		</item>
		<item>
			<title>Input wav file Output Spectrogram using FFT algorithm</title>
			<link>http://www.daniweb.com/forums/thread248552.html</link>
			<pubDate>Wed, 23 Dec 2009 15:31:36 GMT</pubDate>
			<description>hey guys, 
                 Can any body tell me how shall i start with the project. 
I will be using Java and C together(JNI) in netbeans for coding. I will be   
embedding the C code in Java(Interface). 
 
First i want to read the wav file in C and sample it and apply FFT algorithm.. And output...</description>
			<content:encoded><![CDATA[<div>hey guys,<br />
                 Can any body tell me how shall i start with the project.<br />
I will be using Java and C together(JNI) in netbeans for coding. I will be  <br />
embedding the C code in Java(Interface).<br />
<br />
First i want to read the wav file in C and sample it and apply FFT algorithm.. And output should be an spectrogram. <br />
<br />
<br />
can any body tell me how to start.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum118.html">C</category>
			<dc:creator>gonzi.p12</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248552.html</guid>
		</item>
		<item>
			<title>Internet explorer starts automatically during startup</title>
			<link>http://www.daniweb.com/forums/thread248551.html</link>
			<pubDate>Wed, 23 Dec 2009 15:31:16 GMT</pubDate>
			<description><![CDATA[hi, 
 
I seem to have a problem with my internet explorer 8. it is starting up automatically when I start my computer. By starting up I mean that as soon as i start up my computer and use the task manager i can see that 2 *iexplore.exe* processes have been started and if i don't end them they...]]></description>
			<content:encoded><![CDATA[<div>hi,<br />
<br />
I seem to have a problem with my internet explorer 8. it is starting up automatically when I start my computer. By starting up I mean that as soon as i start up my computer and use the task manager i can see that 2 <span style="font-style:italic"><span style="font-weight:bold">iexplore.exe</span></span> processes have been started and if i don't end them they multiply and start giving me DEP problems. and a popup appears that 'this tab has been recovered' in my desktop. However i cannot see any open internet explorer applications in the task manager, neither does it appear in my desktop. thus I think that the processes are running in background.<br />
<br />
I have checked the MSCONFIG and regitry settings for startup but iexplore is not listed anywhere, not even in the startup folder. I also did a HijackThis scan and i am posting it here.<br />
<br />
Please help me out....<br />
<br />
(((((((((((((<span style="font-weight:bold">There are two log files, the first one is after ending the iexplore.exe processes, the second one is after a fresh boot</span>))))<br />
<br />
Logfile of Trend Micro HijackThis v2.0.2<br />
Scan saved at 8:48:43 PM, on 12/23/2009<br />
Platform: Windows XP SP3 (WinNT 5.01.2600)<br />
MSIE: Internet Explorer v8.00 (8.00.6001.18702)<br />
Boot mode: Normal<br />
<br />
Running processes:<br />
C:\WINDOWS\System32\smss.exe<br />
C:\WINDOWS\system32\winlogon.exe<br />
C:\WINDOWS\system32\services.exe<br />
C:\WINDOWS\system32\lsass.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\WINDOWS\System32\svchost.exe<br />
C:\Program Files\Alwil Software\Avast4\aswUpdSv.exe<br />
C:\Program Files\Alwil Software\Avast4\ashServ.exe<br />
C:\WINDOWS\Explorer.EXE<br />
C:\WINDOWS\system32\spoolsv.exe<br />
C:\PROGRA~1\ALWILS~1\Avast4\ashDisp.exe<br />
C:\WINDOWS\system32\igfxtray.exe<br />
C:\WINDOWS\system32\hkcmd.exe<br />
C:\WINDOWS\system32\igfxpers.exe<br />
C:\WINDOWS\system32\igfxsrvc.exe<br />
C:\WINDOWS\RTHDCPL.EXE<br />
C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe<br />
C:\Program Files\Nero\Nero 7\InCD\NBHGui.exe<br />
C:\Program Files\Nero\Nero 7\InCD\InCD.exe<br />
C:\Program Files\Java\jre6\bin\jusched.exe<br />
E:\QuickTime\QTTask.exe<br />
C:\Program Files\Microsoft Office\Office12\GrooveMonitor.exe<br />
C:\Program Files\HP\HP Software Update\HPWuSchd2.exe<br />
C:\WINDOWS\system32\ctfmon.exe<br />
E:\DAEMON Tools Lite\daemon.exe<br />
E:\uTorrent\uTorrent.exe<br />
E:\Wallpaper Juggler\Juggler.exe<br />
C:\Program Files\HP\Digital Imaging\bin\hpqtra08.exe<br />
C:\Program Files\Bonjour\mDNSResponder.exe<br />
C:\Program Files\Nero\Nero 7\InCD\InCDsrv.exe<br />
C:\Program Files\Java\jre6\bin\jqs.exe<br />
C:\Program Files\Common Files\Microsoft Shared\VS7Debug\mdm.exe<br />
C:\Program Files\CyberLink\Shared Files\RichVideo.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\Program Files\Alwil Software\Avast4\ashMaiSv.exe<br />
C:\Program Files\Alwil Software\Avast4\ashWebSv.exe<br />
C:\Program Files\HP\Digital Imaging\bin\hpqSTE08.exe<br />
E:\Trend Micro\HijackThis\HijackThis.exe<br />
<br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://www.google.co.in/" target="_blank">http://www.google.co.in/</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = *.local<br />
O2 - BHO: AcroIEHelperStub - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll<br />
O2 - BHO: Groove GFS Browser Helper - {72853161-30C5-4D22-B7F9-0BBC1D38A37E} - C:\PROGRA~1\MICROS~2\Office12\GRA8E1~1.DLL<br />
O2 - BHO: D - {DA424237-EC72-3AC1-AFF7-4BF74DFB2F6C} - C:\WINDOWS\system32\hw14558.dll<br />
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br />
O2 - BHO: JQSIEStartDetectorImpl - {E7E6F031-17CE-4C07-BC86-EABFE594F69C} - C:\Program Files\Java\jre6\lib\deploy\jqs\ie\jqs_plugin.dll<br />
O4 - HKLM\..\Run: [avast!] C:\PROGRA~1\ALWILS~1\Avast4\ashDisp.exe<br />
O4 - HKLM\..\Run: [IgfxTray] C:\WINDOWS\system32\igfxtray.exe<br />
O4 - HKLM\..\Run: [HotKeysCmds] C:\WINDOWS\system32\hkcmd.exe<br />
O4 - HKLM\..\Run: [Persistence] C:\WINDOWS\system32\igfxpers.exe<br />
O4 - HKLM\..\Run: [RTHDCPL] RTHDCPL.EXE<br />
O4 - HKLM\..\Run: [SkyTel] SkyTel.EXE<br />
O4 - HKLM\..\Run: [Alcmtr] ALCMTR.EXE<br />
O4 - HKLM\..\Run: [RemoteControl] &quot;C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe&quot;<br />
O4 - HKLM\..\Run: [LanguageShortcut] &quot;C:\Program Files\CyberLink\PowerDVD\Language\Language.exe&quot;<br />
O4 - HKLM\..\Run: [NeroFilterCheck] C:\Program Files\Common Files\Ahead\Lib\NeroCheck.exe<br />
O4 - HKLM\..\Run: [SecurDisc] C:\Program Files\Nero\Nero 7\InCD\NBHGui.exe<br />
O4 - HKLM\..\Run: [InCD] C:\Program Files\Nero\Nero 7\InCD\InCD.exe<br />
O4 - HKLM\..\Run: [SunJavaUpdateSched] &quot;C:\Program Files\Java\jre6\bin\jusched.exe&quot;<br />
O4 - HKLM\..\Run: [QuickTime Task] &quot;E:\QuickTime\QTTask.exe&quot; -atboottime<br />
O4 - HKLM\..\Run: [GrooveMonitor] &quot;C:\Program Files\Microsoft Office\Office12\GrooveMonitor.exe&quot;<br />
O4 - HKLM\..\Run: [Adobe Reader Speed Launcher] &quot;E:\Adobe\Reader 9.0\Reader\Reader_sl.exe&quot;<br />
O4 - HKLM\..\Run: [Adobe ARM] &quot;C:\Program Files\Common Files\Adobe\ARM\1.0\AdobeARM.exe&quot;<br />
O4 - HKLM\..\Run: [HP Software Update] C:\Program Files\HP\HP Software Update\HPWuSchd2.exe<br />
O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe<br />
O4 - HKCU\..\Run: [DAEMON Tools Lite] &quot;E:\DAEMON Tools Lite\daemon.exe&quot; -autorun<br />
O4 - HKCU\..\Run: [uTorrent] &quot;E:\uTorrent\uTorrent.exe&quot;<br />
O4 - HKCU\..\Run: [Juggler] E:\Wallpaper Juggler\Juggler.exe<br />
O4 - Global Startup: HP Digital Imaging Monitor.lnk = C:\Program Files\HP\Digital Imaging\bin\hpqtra08.exe<br />
O4 - Global Startup: Microsoft Office.lnk = C:\Program Files\Microsoft Office\Office10\OSA.EXE<br />
O8 - Extra context menu item: E&amp;xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\Office12\EXCEL.EXE/3000<br />
O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\MICROS~2\Office12\ONBttnIE.dll<br />
O9 - Extra 'Tools' menuitem: S&amp;end to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\MICROS~2\Office12\ONBttnIE.dll<br />
O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\Office12\REFIEBAR.DLL<br />
O9 - Extra button: (no name) - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br />
O9 - Extra 'Tools' menuitem: @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br />
O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O17 - HKLM\System\CCS\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O17 - HKLM\System\CS1\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O17 - HKLM\System\CS2\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O18 - Protocol: grooveLocalGWS - {88FED34C-F0CA-4636-A375-3CB6248B04CD} - C:\PROGRA~1\MICROS~2\Office12\GR99D3~1.DLL<br />
O23 - Service: avast! iAVS4 Control Service (aswUpdSv) - ALWIL Software - C:\Program Files\Alwil Software\Avast4\aswUpdSv.exe<br />
O23 - Service: avast! Antivirus - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashServ.exe<br />
O23 - Service: avast! Mail Scanner - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashMaiSv.exe<br />
O23 - Service: avast! Web Scanner - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashWebSv.exe<br />
O23 - Service: ##Id_String1.6844F930_1628_4223_B5CC_5BB94B879762## (Bonjour Service) - Apple Computer, Inc. - C:\Program Files\Bonjour\mDNSResponder.exe<br />
O23 - Service: FLEXnet Licensing Service - Macrovision Europe Ltd. - C:\Program Files\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService.exe<br />
O23 - Service: Google Update Service (gupdate) (gupdate) - Google Inc. - C:\Program Files\Google\Update\GoogleUpdate.exe<br />
O23 - Service: InCD Helper (InCDsrv) - Nero AG - C:\Program Files\Nero\Nero 7\InCD\InCDsrv.exe<br />
O23 - Service: Java Quick Starter (JavaQuickStarterService) - Sun Microsystems, Inc. - C:\Program Files\Java\jre6\bin\jqs.exe<br />
O23 - Service: NBService - Nero AG - C:\Program Files\Nero\Nero 7\Nero BackItUp\NBService.exe<br />
O23 - Service: NMIndexingService - Nero AG - C:\Program Files\Common Files\Ahead\Lib\NMIndexingService.exe<br />
O23 - Service: Pml Driver HPZ12 - HP - C:\WINDOWS\system32\HPZipm12.exe<br />
O23 - Service: Cyberlink RichVideo Service(CRVS) (RichVideo) - Unknown owner - C:\Program Files\CyberLink\Shared Files\RichVideo.exe<br />
<br />
--<br />
End of file - 7804 bytes<br />
<br />
<br />
((((((((((((((((((((((((((((((((((((((((((((((((((((This is the log file of HJT after fresh startup)))))))))))))))))))))))))))))))))))))))))))))))<br />
<br />
<br />
Logfile of Trend Micro HijackThis v2.0.2<br />
Scan saved at 9:03:47 PM, on 12/23/2009<br />
Platform: Windows XP SP3 (WinNT 5.01.2600)<br />
MSIE: Internet Explorer v8.00 (8.00.6001.18702)<br />
Boot mode: Normal<br />
<br />
Running processes:<br />
C:\WINDOWS\System32\smss.exe<br />
C:\WINDOWS\system32\winlogon.exe<br />
C:\WINDOWS\system32\services.exe<br />
C:\WINDOWS\system32\lsass.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\WINDOWS\System32\svchost.exe<br />
C:\Program Files\Alwil Software\Avast4\aswUpdSv.exe<br />
C:\Program Files\Alwil Software\Avast4\ashServ.exe<br />
C:\WINDOWS\Explorer.EXE<br />
C:\PROGRA~1\ALWILS~1\Avast4\ashDisp.exe<br />
C:\WINDOWS\system32\igfxtray.exe<br />
C:\WINDOWS\system32\hkcmd.exe<br />
C:\WINDOWS\system32\igfxpers.exe<br />
C:\WINDOWS\RTHDCPL.EXE<br />
C:\WINDOWS\system32\igfxsrvc.exe<br />
C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe<br />
C:\Program Files\Nero\Nero 7\InCD\NBHGui.exe<br />
C:\Program Files\Nero\Nero 7\InCD\InCD.exe<br />
C:\Program Files\Java\jre6\bin\jusched.exe<br />
E:\QuickTime\QTTask.exe<br />
C:\Program Files\Microsoft Office\Office12\GrooveMonitor.exe<br />
E:\Adobe\Reader 9.0\Reader\Reader_sl.exe<br />
C:\Program Files\HP\HP Software Update\HPWuSchd2.exe<br />
E:\DAEMON Tools Lite\daemon.exe<br />
C:\WINDOWS\system32\ctfmon.exe<br />
C:\Program Files\Internet Explorer\IEXPLORE.EXE<br />
E:\uTorrent\uTorrent.exe<br />
C:\Program Files\Internet Explorer\IEXPLORE.EXE<br />
E:\Wallpaper Juggler\Juggler.exe<br />
C:\Program Files\HP\Digital Imaging\bin\hpqtra08.exe<br />
C:\WINDOWS\system32\spoolsv.exe<br />
C:\Program Files\Bonjour\mDNSResponder.exe<br />
C:\Program Files\Google\Update\GoogleUpdate.exe<br />
C:\Program Files\Nero\Nero 7\InCD\InCDsrv.exe<br />
C:\Program Files\Java\jre6\bin\jqs.exe<br />
C:\Program Files\Common Files\Microsoft Shared\VS7Debug\mdm.exe<br />
C:\Program Files\HP\Digital Imaging\bin\hpqSTE08.exe<br />
C:\Program Files\CyberLink\Shared Files\RichVideo.exe<br />
C:\WINDOWS\system32\svchost.exe<br />
C:\Program Files\Alwil Software\Avast4\ashMaiSv.exe<br />
C:\Program Files\Alwil Software\Avast4\ashWebSv.exe<br />
C:\Program Files\Internet Explorer\IEXPLORE.EXE<br />
C:\Program Files\Internet Explorer\IEXPLORE.EXE<br />
E:\Trend Micro\HijackThis\HijackThis.exe<br />
<br />
R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://www.google.co.in/" target="_blank">http://www.google.co.in/</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=54896" target="_blank">http://go.microsoft.com/fwlink/?LinkId=54896</a><br />
R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = <a rel="nofollow" class="t" href="http://go.microsoft.com/fwlink/?LinkId=69157" target="_blank">http://go.microsoft.com/fwlink/?LinkId=69157</a><br />
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyOverride = *.local<br />
O2 - BHO: AcroIEHelperStub - {18DF081C-E8AD-4283-A596-FA578C2EBDC3} - C:\Program Files\Common Files\Adobe\Acrobat\ActiveX\AcroIEHelperShim.dll<br />
O2 - BHO: Groove GFS Browser Helper - {72853161-30C5-4D22-B7F9-0BBC1D38A37E} - C:\PROGRA~1\MICROS~2\Office12\GRA8E1~1.DLL<br />
O2 - BHO: D - {DA424237-EC72-3AC1-AFF7-4BF74DFB2F6C} - C:\WINDOWS\system32\hw14558.dll<br />
O2 - BHO: Java(tm) Plug-In 2 SSV Helper - {DBC80044-A445-435b-BC74-9C25C1C588A9} - C:\Program Files\Java\jre6\bin\jp2ssv.dll<br />
O2 - BHO: JQSIEStartDetectorImpl - {E7E6F031-17CE-4C07-BC86-EABFE594F69C} - C:\Program Files\Java\jre6\lib\deploy\jqs\ie\jqs_plugin.dll<br />
O4 - HKLM\..\Run: [avast!] C:\PROGRA~1\ALWILS~1\Avast4\ashDisp.exe<br />
O4 - HKLM\..\Run: [IgfxTray] C:\WINDOWS\system32\igfxtray.exe<br />
O4 - HKLM\..\Run: [HotKeysCmds] C:\WINDOWS\system32\hkcmd.exe<br />
O4 - HKLM\..\Run: [Persistence] C:\WINDOWS\system32\igfxpers.exe<br />
O4 - HKLM\..\Run: [RTHDCPL] RTHDCPL.EXE<br />
O4 - HKLM\..\Run: [SkyTel] SkyTel.EXE<br />
O4 - HKLM\..\Run: [Alcmtr] ALCMTR.EXE<br />
O4 - HKLM\..\Run: [RemoteControl] &quot;C:\Program Files\CyberLink\PowerDVD\PDVDServ.exe&quot;<br />
O4 - HKLM\..\Run: [LanguageShortcut] &quot;C:\Program Files\CyberLink\PowerDVD\Language\Language.exe&quot;<br />
O4 - HKLM\..\Run: [NeroFilterCheck] C:\Program Files\Common Files\Ahead\Lib\NeroCheck.exe<br />
O4 - HKLM\..\Run: [SecurDisc] C:\Program Files\Nero\Nero 7\InCD\NBHGui.exe<br />
O4 - HKLM\..\Run: [InCD] C:\Program Files\Nero\Nero 7\InCD\InCD.exe<br />
O4 - HKLM\..\Run: [SunJavaUpdateSched] &quot;C:\Program Files\Java\jre6\bin\jusched.exe&quot;<br />
O4 - HKLM\..\Run: [QuickTime Task] &quot;E:\QuickTime\QTTask.exe&quot; -atboottime<br />
O4 - HKLM\..\Run: [GrooveMonitor] &quot;C:\Program Files\Microsoft Office\Office12\GrooveMonitor.exe&quot;<br />
O4 - HKLM\..\Run: [Adobe Reader Speed Launcher] &quot;E:\Adobe\Reader 9.0\Reader\Reader_sl.exe&quot;<br />
O4 - HKLM\..\Run: [Adobe ARM] &quot;C:\Program Files\Common Files\Adobe\ARM\1.0\AdobeARM.exe&quot;<br />
O4 - HKLM\..\Run: [HP Software Update] C:\Program Files\HP\HP Software Update\HPWuSchd2.exe<br />
O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe<br />
O4 - HKCU\..\Run: [DAEMON Tools Lite] &quot;E:\DAEMON Tools Lite\daemon.exe&quot; -autorun<br />
O4 - HKCU\..\Run: [uTorrent] &quot;E:\uTorrent\uTorrent.exe&quot;<br />
O4 - HKCU\..\Run: [Juggler] E:\Wallpaper Juggler\Juggler.exe<br />
O4 - Global Startup: HP Digital Imaging Monitor.lnk = C:\Program Files\HP\Digital Imaging\bin\hpqtra08.exe<br />
O4 - Global Startup: Microsoft Office.lnk = C:\Program Files\Microsoft Office\Office10\OSA.EXE<br />
O8 - Extra context menu item: E&amp;xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\Office12\EXCEL.EXE/3000<br />
O9 - Extra button: Send to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\MICROS~2\Office12\ONBttnIE.dll<br />
O9 - Extra 'Tools' menuitem: S&amp;end to OneNote - {2670000A-7350-4f3c-8081-5663EE0C6C49} - C:\PROGRA~1\MICROS~2\Office12\ONBttnIE.dll<br />
O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\Office12\REFIEBAR.DLL<br />
O9 - Extra button: (no name) - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br />
O9 - Extra 'Tools' menuitem: @xpsp3res.dll,-20001 - {e2e2dd38-d088-4134-82b7-f2ba38496583} - C:\WINDOWS\Network Diagnostic\xpnetdiag.exe<br />
O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe<br />
O17 - HKLM\System\CCS\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O17 - HKLM\System\CS1\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O17 - HKLM\System\CS2\Services\Tcpip\..\{56126133-7AC2-42BA-BE13-9657E4D47AC0}: NameServer = 172.16.0.1,4.2.2.2<br />
O18 - Protocol: grooveLocalGWS - {88FED34C-F0CA-4636-A375-3CB6248B04CD} - C:\PROGRA~1\MICROS~2\Office12\GR99D3~1.DLL<br />
O23 - Service: avast! iAVS4 Control Service (aswUpdSv) - ALWIL Software - C:\Program Files\Alwil Software\Avast4\aswUpdSv.exe<br />
O23 - Service: avast! Antivirus - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashServ.exe<br />
O23 - Service: avast! Mail Scanner - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashMaiSv.exe<br />
O23 - Service: avast! Web Scanner - ALWIL Software - C:\Program Files\Alwil Software\Avast4\ashWebSv.exe<br />
O23 - Service: ##Id_String1.6844F930_1628_4223_B5CC_5BB94B879762## (Bonjour Service) - Apple Computer, Inc. - C:\Program Files\Bonjour\mDNSResponder.exe<br />
O23 - Service: FLEXnet Licensing Service - Macrovision Europe Ltd. - C:\Program Files\Common Files\Macrovision Shared\FLEXnet Publisher\FNPLicensingService.exe<br />
O23 - Service: Google Update Service (gupdate) (gupdate) - Google Inc. - C:\Program Files\Google\Update\GoogleUpdate.exe<br />
O23 - Service: InCD Helper (InCDsrv) - Nero AG - C:\Program Files\Nero\Nero 7\InCD\InCDsrv.exe<br />
O23 - Service: Java Quick Starter (JavaQuickStarterService) - Sun Microsystems, Inc. - C:\Program Files\Java\jre6\bin\jqs.exe<br />
O23 - Service: NBService - Nero AG - C:\Program Files\Nero\Nero 7\Nero BackItUp\NBService.exe<br />
O23 - Service: NMIndexingService - Nero AG - C:\Program Files\Common Files\Ahead\Lib\NMIndexingService.exe<br />
O23 - Service: Pml Driver HPZ12 - HP - C:\WINDOWS\system32\HPZipm12.exe<br />
O23 - Service: Cyberlink RichVideo Service(CRVS) (RichVideo) - Unknown owner - C:\Program Files\CyberLink\Shared Files\RichVideo.exe<br />
<br />
--<br />
End of file - 8091 bytes</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum64.html">Viruses, Spyware and other Nasties</category>
			<dc:creator>samiksome</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248551.html</guid>
		</item>
		<item>
			<title>Fraction, returning problem.</title>
			<link>http://www.daniweb.com/forums/thread248550.html</link>
			<pubDate>Wed, 23 Dec 2009 15:30:23 GMT</pubDate>
			<description><![CDATA[Hello, 
 
I have this  program that simplifies a fraction by calculating the greatest common divisor. 
So the fraction 8/4 (largest common divisor = 4) 
8/4  4/4   => result would be 2/1 (fraction simplified) 
 
My problem is my method calculated this greatest common divisor. 
But now that value...]]></description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
I have this  program that simplifies a fraction by calculating the greatest common divisor.<br />
So the fraction 8/4 (largest common divisor = 4)<br />
8/4  4/4   =&gt; result would be 2/1 (fraction simplified)<br />
<br />
My problem is my method calculated this greatest common divisor.<br />
But now that value has to be divided trough the nominator and denominator of the fraction (wich are a and b in my example).<br />
<br />
But i cannot seem to get that dividing to work. (will i need to make a new method or simply in this one...)<br />
Also calling up that method (another small class below the algorithm).<br />
<br />
 <pre style="margin:20px; line-height:13px">&nbsp;  public ulong GenormBreuk(ulong a, ulong b)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; ulong remainder;<br />
<br />
&nbsp; &nbsp; &nbsp; while (b != 0)<br />
&nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; remainder = a % b;<br />
&nbsp; &nbsp; &nbsp; &nbsp; a = b;<br />
&nbsp; &nbsp; &nbsp; &nbsp; b = remainder;<br />
&nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; return a;<br />
<br />
&nbsp; &nbsp; &nbsp; //part that is not working....<br />
&nbsp; &nbsp; &nbsp; ulong gcd = GenormBreuk(a, b);<br />
&nbsp; &nbsp; &nbsp; a = a / gcd;<br />
&nbsp; &nbsp; &nbsp; b = b / gcd;<br />
&nbsp; &nbsp; &nbsp; <br />
&nbsp;  <br />
&nbsp; &nbsp; }/*GreatestCommonDivisor*/</pre><br />
<br />
Also i will call up this class in a other class (with soley conscode that contains writelines, readlines etc...).<br />
I do not understand what arguements to pass along with that, are out parameters required?<br />
Atm if i call up the class ber.GenormsBreuk(n , p) i will just get the value fo the GcD. Its unclear how i have to modifiy my method &amp; the 2 arguements for below to show the result of the simplified fraction.<br />
<br />
So the last line should contain the simplified  fraction {0} for the nominator / {1} would contain the simplified denominator.<br />
<br />
 <pre style="margin:20px; line-height:13px">public void TestGCD()<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; ClsBereken Ber = new ClsBereken();<br />
&nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;\tTest GCD&quot;);<br />
&nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;\t--------&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Give in a fraction where the denominator &amp; the denominator\nare natural numbers different from 0\n&quot;);<br />
&nbsp; &nbsp; &nbsp; Console.Write(&quot;\tNominator...&quot;);<br />
&nbsp; &nbsp; &nbsp; ulong n = ulong.Parse(Console.ReadLine());<br />
&nbsp; &nbsp; &nbsp; Console.Write(&quot;\tDenominator...&quot;);<br />
&nbsp; &nbsp; &nbsp; ulong p = ulong.Parse(Console.ReadLine());<br />
<br />
&nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;\nFraction in original shape: {0}/{1}&quot;, n , p);<br />
<br />
&nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Simplified fraction {0}/{1}&quot;, Ber.GenormBreuk(n, p) , ....?);<br />
&nbsp; &nbsp; }</pre><br />
<br />
Regards.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Nerathas</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248550.html</guid>
		</item>
		<item>
			<title>Printing Values</title>
			<link>http://www.daniweb.com/forums/thread248549.html</link>
			<pubDate>Wed, 23 Dec 2009 15:16:05 GMT</pubDate>
			<description><![CDATA[I have managed to change an input String expression with parentheses to a postfix expression. I want to print to print the values in the stack but can't work it out. Can anyone tell me how I do this? 
 
  <div class="codeblock"> <div class="spaced"> <div style="float:right; margin-right:10px"> <a...]]></description>
			<content:encoded><![CDATA[<div>I have managed to change an input String expression with parentheses to a postfix expression. I want to print to print the values in the stack but can't work it out. Can anyone tell me how I do this?<br />
<br />
 <pre style="margin:20px; line-height:13px">class Converter{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; private Stack converterStack;<br />
&nbsp; &nbsp; &nbsp; &nbsp; private String input;<br />
&nbsp; &nbsp; &nbsp; &nbsp; private String output = &quot;&quot;;<br />
&nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; // Constructor for the Converter class<br />
&nbsp; &nbsp; &nbsp; &nbsp; public Converter(String userEntered){ <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input = userEntered;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; converterStack = new Stack();<br />
}//end of Converter class<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; //Class to set stack values and define methods<br />
&nbsp; &nbsp; &nbsp; &nbsp; public class Stack {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; private char[] theArray;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; private int topStack;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Constructor for the Stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public Stack(){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Set to 100 values<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; theArray = new char[100];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; topStack = 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Stack Methods<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Puts item on top of stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public void push(char i) {&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; theArray[++topStack] = i; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Takes an item from the top of stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public char pop(){&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return theArray[topStack--]; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Shows item at the top of the stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public char peek(){&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return theArray[topStack]; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Returns true if stack is empty<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; public boolean isEmpty(){&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return topStack == 0; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
public String Order(){ <br />
&nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; for(int i=0; i&lt;input.length(); i++){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; char character = input.charAt(i);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch(character){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // If add or minus, go to operand method and establish appropriate precedence<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '+':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '-':<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; operand(character, 1);&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // If multiply or divide, go to the operand method and establish appropriate precedence<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '*':&nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '/':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; operand(character, 2); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // If open bracket, push to stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '(':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; converterStack.push(character);&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // If ), go to the parentheses method<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case ')':&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; parentheses(character);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Check for Spaces<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case ' ':&nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Check for tabs<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case '\t':<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; default:&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output = output + character;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; while(!converterStack.isEmpty()){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output = output + converterStack.pop();<br />
&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; return output; // Return final expression to screen&nbsp; &nbsp; &nbsp; &nbsp;  <br />
}//end of Order class<br />
&nbsp;<br />
// Takes the precedence of the operands into account<br />
public void operand(char character2, int precedence1){<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; while (!converterStack.isEmpty()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; char character1 = converterStack.pop();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (character1 == '(') { // Checks for left parentheses<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; converterStack.push(character1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int precedence2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (character1 == '+' || character1 == '-')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; precedence2 = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else // No need to repeat for the operator operands<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; precedence2 = 2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (precedence2 &lt; precedence1){<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; converterStack.push(character1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output = output + character1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; converterStack.push(character2);<br />
}//end of operand class<br />
<br />
// Evaluates the&nbsp; parentheses<br />
public void parentheses(char character4){<br />
&nbsp; &nbsp; &nbsp; &nbsp; while (!converterStack.isEmpty()) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; char character3 = converterStack.pop();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (character3 == '(')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output = output + character3;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }//end of parentheses class<br />
}</pre><br />
 <pre style="margin:20px; line-height:13px">import java.io.IOException;<br />
import java.util.Scanner;<br />
<br />
//Main class<br />
class Calculator{<br />
&nbsp; &nbsp; &nbsp; &nbsp; public static void main(String[] args) throws IOException{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String input, output;{<br />
&nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Scanner sc = new Scanner(System.in);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(&quot;Please enter an infix expression: &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; input = sc.nextLine();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Converter docalculation = new Converter(input);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output = docalculation.Order();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.out.println(&quot;The postfix expression is: &quot; + output); <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; <br />
}//end of Main class</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum9.html">Java</category>
			<dc:creator>TheManual</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248549.html</guid>
		</item>
		<item>
			<title>AMD Tutrion vs Intel Core 2 Duo</title>
			<link>http://www.daniweb.com/forums/thread248548.html</link>
			<pubDate>Wed, 23 Dec 2009 14:58:08 GMT</pubDate>
			<description>I am looking to buy a laptop and have zeroed in on these two: 
 
http://is.gd/5yMms : HP Pavilion dv6-2005ax  
 
http://is.gd/5yMn4 : HP Pavilion dv6-1308TX 
 
They have everything in common except the processor. 
 
2005ax has AMD Turion™ II M500 2.20GHz 1MB L2 cache</description>
			<content:encoded><![CDATA[<div>I am looking to buy a laptop and have zeroed in on these two:<br />
<br />
<a rel="nofollow" class="t" href="http://is.gd/5yMms" target="_blank">http://is.gd/5yMms</a> : HP Pavilion dv6-2005ax <br />
<br />
<a rel="nofollow" class="t" href="http://is.gd/5yMn4" target="_blank">http://is.gd/5yMn4</a> : HP Pavilion dv6-1308TX<br />
<br />
They have everything in common except the processor.<br />
<br />
2005ax has AMD Turion™ II M500 2.20GHz 1MB L2 cache<br />
<br />
1308tx has ntel® Core™2 Duo T6600 2.20 GHz, 2 MB L2 Cache, 800 MHz FSB <br />
<br />
and the difference in their prices, here in India is Rs. 5000 i.e roughly $100.<br />
<br />
I have never used an AMD powered PC. Are their any software or hardware compatibility issues with AMDs? Any reason why I should go with the Intel box?</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum104.html">Motherboards, CPUs and RAM</category>
			<dc:creator>absk</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248548.html</guid>
		</item>
		<item>
			<title>Buying a high end laptop, Need suggestions</title>
			<link>http://www.daniweb.com/forums/thread248547.html</link>
			<pubDate>Wed, 23 Dec 2009 14:54:43 GMT</pubDate>
			<description><![CDATA[I have to buy a laptop for my friend. She's going to Cambridge university for some graphic designing course. Obviously, the university has asked for a high end laptop and 1.5 TB portable HDD. 
 
firstly, would it be better to buy from here itself or buy from UK?? 
one of my frnd living there...]]></description>
			<content:encoded><![CDATA[<div>I have to buy a laptop for my friend. She's going to Cambridge university for some graphic designing course. Obviously, the university has asked for a high end laptop and 1.5 TB portable HDD.<br />
<br />
firstly, would it be better to buy from here itself or buy from UK??<br />
one of my frnd living there suggested me not to buy from uk as they are expensive there. Purchasing from india will be good. Anyone know the price differences??<br />
<br />
I have a budget limit of 80K for both laptop and HDD. I would prefer dell and so far <a rel="nofollow" class="t" href="http://www1.ap.dell.com/in/en/home/notebooks/laptop-studio-xps-16/pd.aspx?refid=laptop-studio-xps-16&amp;s=dhs&amp;cs=indhs1&amp;~oid=in~en~78002~studio_xps_16_s541020in8~~" target="_blank">This is</a> what i have selected. Its under my budget line and maximum possible config i can get. But i would to have Core I7-820QM Processor instead of Core I7-720QM(the default).But its not letting me customize that. Am i able to get that somehow ??<br />
<br />
I was thinking of getting some christmas schemes. But they have none on xps series. Should i wait some more??<br />
<br />
The default network card is Dell 1520 Wireless-N card, Should i change it to Intel(R) WiFi Link 5300 (802.11a/g/n) Half Mini-card. What difference will it make..<br />
<br />
<br />
What about the prices of 1.5 TB portable drive??</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum104.html">Motherboards, CPUs and RAM</category>
			<dc:creator>ishanjain</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread248547.html</guid>
		</item>
	</channel>
</rss>
