<?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 - C#</title>
		<link>http://www.daniweb.com/forums</link>
		<description><![CDATA[Our C# forum is the place for Q&A-style discussions related to the programming language known as Microsoft's response to java. Note that we also have an ASP.NET forum within the Web Development category.]]></description>
		<language>en-US</language>
		<lastBuildDate>Thu, 21 Aug 2008 14:21:25 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.daniweb.com/forums/myimages/misc/rss.jpg</url>
			<title>DaniWeb IT Discussion Community - C#</title>
			<link>http://www.daniweb.com/forums</link>
		</image>
		<item>
			<title>Getting text/integer value from listbox</title>
			<link>http://www.daniweb.com/forums/thread141481.html</link>
			<pubDate>Thu, 21 Aug 2008 09:21:08 GMT</pubDate>
			<description>Hi 

I have a stored procedure that returns the unique ID for a particular Name/string passed in.

On my windows form I have a ListBox control filled with a list of names (returned from another stored procedure)

I want to be able to let the user click the list box and select a name ... then once...</description>
			<content:encoded><![CDATA[<div>Hi <br />
<br />
I have a stored procedure that returns the unique ID for a particular Name/string passed in.<br />
<br />
On my windows form I have a ListBox control filled with a list of names (returned from another stored procedure)<br />
<br />
I want to be able to let the user click the list box and select a name ... then once they have selected the name that value would be passed into my new stored procedure to return the unique ID which i then want to display in a hidden textbox for further usage.<br />
<br />
Can anyone point me in the right direction with this.<br />
<br />
The following uncommented lines of code illustrate what I am trying to do to get the contents of the users selection<br />
<br />
<pre style="margin:20px; line-height:13px">//myCommand.Parameters[&quot;@companyName&quot;].Value = cbo_companyName.SelectedText;<br />
//myCommand.Parameters[&quot;@companyName&quot;].Value = cbo_companyName.SelectedItem;<br />
</pre>
<br />
<br />
Many Thanks :)<br />
<br />
Elmo</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Elmo_loves_you</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141481.html</guid>
		</item>
		<item>
			<title>There is no row at position -1</title>
			<link>http://www.daniweb.com/forums/thread141475.html</link>
			<pubDate>Thu, 21 Aug 2008 08:46:57 GMT</pubDate>
			<description><![CDATA[Hi, I'm developing a content management website for a company using C#. The program runs when I preview it in browser directly from Development Environment (visual studio to be specific). But when I tried to access it on window 2003 server (local host) I got the error "there is no row at position...]]></description>
			<content:encoded><![CDATA[<div>Hi, I'm developing a content management website for a company using C#. The program runs when I preview it in browser directly from Development Environment (visual studio to be specific). But when I tried to access it on window 2003 server (local host) I got the error &quot;there is no row at position -1&quot;. Somebody help!</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Soleybancing</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141475.html</guid>
		</item>
		<item>
			<title>how to access child control of a user control</title>
			<link>http://www.daniweb.com/forums/thread141469.html</link>
			<pubDate>Thu, 21 Aug 2008 08:08:54 GMT</pubDate>
			<description>hi frds,
           I have created a user control with the Imagebox control, label and a checkedlistbox control.
 then I want to access checkedlistbox control from my application form. But unable to find any properties or event who manage directly to checkedlistbox control.

Plz provide way how to...</description>
			<content:encoded><![CDATA[<div>hi frds,<br />
           I have created a user control with the Imagebox control, label and a checkedlistbox control.<br />
 then I want to access checkedlistbox control from my application form. But unable to find any properties or event who manage directly to checkedlistbox control.<br />
<br />
Plz provide way how to access that control event on my form In C# .<br />
 Thanks in advance</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>jainendra.shah</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141469.html</guid>
		</item>
		<item>
			<title>getting crazy in trying to run a batch file!</title>
			<link>http://www.daniweb.com/forums/thread141464.html</link>
			<pubDate>Thu, 21 Aug 2008 07:18:30 GMT</pubDate>
			<description>I have an application that i want to run a batch file from it all i get is the flashing CMD windows but is not running.

at one time I get it to run but dont know what happen start modyfying other things and stop working. 

what i really want is run the batch file but hidden no user interaction...</description>
			<content:encoded><![CDATA[<div>I have an application that i want to run a batch file from it all i get is the flashing CMD windows but is not running.<br />
<br />
at one time I get it to run but dont know what happen start modyfying other things and stop working. <br />
<br />
what i really want is run the batch file but hidden no user interaction whatsoever and it would be great to have a feedback when the batch finish \<br />
<br />
this is one of the million codes I try<br />
<pre style="margin:20px; line-height:13px">System.Diagnostics.ProcessStartInfo p = new<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.Diagnostics.ProcessStartInfo(@&quot;setstation.cmd&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.UseShellExecute = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.RedirectStandardOutput = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; p.RedirectStandardError = true;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; System.Diagnostics.Process proc = new System.Diagnostics.Process();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; proc.StartInfo = p;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; proc.Start();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; proc.WaitForExit();</pre>
<br />
<br />
my batch file read from a text file and create two files it has a pause on it, it runs great if i run the batch file directly.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>reaven</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141464.html</guid>
		</item>
		<item>
			<title>Windows installer</title>
			<link>http://www.daniweb.com/forums/thread141459.html</link>
			<pubDate>Thu, 21 Aug 2008 06:51:20 GMT</pubDate>
			<description><![CDATA[In my installer project i added few project outputs. When compiling the code, i am getting the warnings as

Warning	11  Two or more objects have the same target location ('[targetdir]\2.4.7.0814\bccrypto-net-1.0.dll')	

To remove the warning, rightclick the dll and select the properties windows. In...]]></description>
			<content:encoded><![CDATA[<div>In my installer project i added few project outputs. When compiling the code, i am getting the warnings as<br />
<br />
Warning	11  Two or more objects have the same target location ('[targetdir]\2.4.7.0814\bccrypto-net-1.0.dll')	<br />
<br />
To remove the warning, rightclick the dll and select the properties windows. In that set Exclude property value to true.(More than one class is trying to place the same dll in the Targetdir)<br />
<br />
Now the warning is not shown. After saving the project, if i close the project and open it again.<br />
Rebuild the solution. Again i got the same warning<br />
<br />
Can any one please tell me how to remove the warning.</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>sanbal</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141459.html</guid>
		</item>
		<item>
			<title>create log files programmatically ?</title>
			<link>http://www.daniweb.com/forums/thread141450.html</link>
			<pubDate>Thu, 21 Aug 2008 05:59:27 GMT</pubDate>
			<description>Hi

how to create log files by c# code. Suppose we have windows XP and our application requirement is to create system_idle logfile for performance check of the system.
and  at last i will check performance in the application.


Thanks in advance...</description>
			<content:encoded><![CDATA[<div>Hi<br />
<br />
how to create log files by c# code. Suppose we have windows XP and our application requirement is to create system_idle logfile for performance check of the system.<br />
and  at last i will check performance in the application.<br />
<br />
<br />
Thanks in advance...</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>RaooF</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141450.html</guid>
		</item>
		<item>
			<title>Help with sending a keystroke to an application?</title>
			<link>http://www.daniweb.com/forums/thread141445.html</link>
			<pubDate>Thu, 21 Aug 2008 05:23:44 GMT</pubDate>
			<description><![CDATA[What I'm trying to do is for example, click a button on the program and have the program send a keystroke to another program that is not the active window. So far all I have is this

 <div class="codeblock"> <div class="spaced"> <div class="light" style="float:right"> <a...]]></description>
			<content:encoded><![CDATA[<div>What I'm trying to do is for example, click a button on the program and have the program send a keystroke to another program that is not the active window. So far all I have is this<br />
<br />
<pre style="margin:20px; line-height:13px">SendKeys.Send(&quot;TEST&quot;);</pre>
<br />
This works fine if the program I want to send the keystrokes to is the active window, however I want to be able to send it to a non active window does anyone have any recommendations? <br />
<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>mark192</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141445.html</guid>
		</item>
		<item>
			<title><![CDATA[I have some syntax errors I can't figure out.]]></title>
			<link>http://www.daniweb.com/forums/thread141409.html</link>
			<pubDate>Thu, 21 Aug 2008 01:55:10 GMT</pubDate>
			<description>I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++. 
I get two of each of these errors.
  
C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(51,39): error CS1518: Expected class,...</description>
			<content:encoded><![CDATA[<div>I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++. <br />
I get two of each of these errors.<br />
  <br />
C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(51,39): error CS1518: Expected class, delegate, enum, interface, or struct<br />
C:\Users\Hector Rosario\Documents\Visual Studio 2008\Projects\ConsoleApplication2\ConsoleApplication2\Program.cs(57,9): error CS1022: Type or namespace definition, or end-of-file expected<br />
<br />
Here is what I am working on<br />
<br />
<pre style="margin:20px; line-height:13px">using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
<br />
namespace ConsoleApplication2<br />
{<br />
&nbsp; &nbsp; class Program<br />
&nbsp; &nbsp; {<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; static void Main(string[] args)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string Name;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; bool Life;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  string choose;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; string Sex;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Welcome to Hector Rosario's Character Generator.&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.Write(&quot;Please enter your name: &quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Name = Console.ReadLine();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Your character's age is {0}&quot;, age);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int age = GenerateRandomInteger(10, 40);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Do you want your character to be male or female?\n Prees m or f to make your choice.&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; switch (choose)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case &quot;m&quot;:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sex = &quot;Your character is male&quot;;<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; case &quot;f&quot;:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sex = &quot;Your character is female&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  default:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sex = &quot;I'm sorry but uh... last I checked there were only two sexes, male and female.&quot;;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }//end switch statement<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(Sex);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.WriteLine(&quot;Press [ENTER] to Exit&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Console.ReadLine();<br />
<br />
}<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; }//end class &quot;switchStatement<br />
&nbsp; &nbsp; private static int GenerateRandomInteger(int intMin, int intMax)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Create a new instance of the class Random<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Random randomNumber = new Random();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Generate a random number using intMin as the minimum and intMax as the maximum<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return randomNumber.Next(intMin, intMax);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }//end of number generator<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
<br />
<br />
&nbsp; &nbsp;  <br />
&nbsp; &nbsp; }</pre></div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Pikachumanson</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141409.html</guid>
		</item>
		<item>
			<title>need help in server</title>
			<link>http://www.daniweb.com/forums/thread141406.html</link>
			<pubDate>Thu, 21 Aug 2008 01:23:27 GMT</pubDate>
			<description>hi guys!.. i need help in what server architecture is the best?.. can u give me a site which i can get a guidelines including the layout of server architecture?.. THANKS..</description>
			<content:encoded><![CDATA[<div>hi guys!.. i need help in what server architecture is the best?.. can u give me a site which i can get a guidelines including the layout of server architecture?.. THANKS..</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>jynx_o7</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141406.html</guid>
		</item>
		<item>
			<title>Datagrid selection based on user typed text</title>
			<link>http://www.daniweb.com/forums/thread141336.html</link>
			<pubDate>Wed, 20 Aug 2008 14:39:25 GMT</pubDate>
			<description><![CDATA[Hello Everyone,

can i search the first column of the datagridview as user types in the text.
i dont want any seperate textbox the user should be able to type on datagridview directly when its selected

For Example if the user types in letter "T" on the datagridview it should take him to the row of...]]></description>
			<content:encoded><![CDATA[<div>Hello Everyone,<br />
<br />
can i search the first column of the datagridview as user types in the text.<br />
i dont want any seperate textbox the user should be able to type on datagridview directly when its selected<br />
<br />
For Example if the user types in letter &quot;T&quot; on the datagridview it should take him to the row of the first column where it starts with the letter &quot;T&quot; .<br />
<br />
is this possible ??<br />
<br />
Thanks EveryBody :)</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>123user123</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141336.html</guid>
		</item>
		<item>
			<title>How to display a child form within a parent form</title>
			<link>http://www.daniweb.com/forums/thread141320.html</link>
			<pubDate>Wed, 20 Aug 2008 12:38:05 GMT</pubDate>
			<description>hi,
friends 
i want to make an c# application in which the child form must reside in parent (container) form
i want to *display the child form* in *panel2* container of *parent form* on simplemenu click of catalog
plz help me, and refer the attachements</description>
			<content:encoded><![CDATA[<div>hi,<br />
friends <br />
i want to make an c# application in which the child form must reside in parent (container) form<br />
i want to <b>display the child form</b> in <b>panel2</b> container of <b>parent form</b> on simplemenu click of catalog<br />
plz help me, and refer the attachements</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//forums/myimages/attach/jpg.gif" alt="File Type: jpg" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=7088&amp;d=1219235537" class="thickbox" title="child Form.JPG" rel="attach673932">child Form.JPG</a> (74.0 KB)</td> </tr><tr> <td><img class="inlineimg" src="http://www.daniweb.com/forums//forums/myimages/attach/jpg.gif" alt="File Type: jpg" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="http://www.daniweb.com/forums/attachment.php?attachmentid=7089&amp;d=1219235553" class="thickbox" title="parent form.JPG" rel="attach673932">parent form.JPG</a> (36.2 KB)</td> </tr> </table> </fieldset>   </div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>oscprofessional</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141320.html</guid>
			<enclosure url="http://www.daniweb.com/forums/attachment.php/7088/child+Form.JPG" length="75746" type="image/jpeg" />
		</item>
		<item>
			<title>Refresh Registry at Runtime</title>
			<link>http://www.daniweb.com/forums/thread141278.html</link>
			<pubDate>Wed, 20 Aug 2008 06:47:52 GMT</pubDate>
			<description>hi..
   i need to change the powerscheme in registry ..it successfully edit in registry but not working...it will take the earlier settings...Can i refresh the registry without logoff...anybody help...
Thanks</description>
			<content:encoded><![CDATA[<div>hi..<br />
   i need to change the powerscheme in registry ..it successfully edit in registry but not working...it will take the earlier settings...Can i refresh the registry without logoff...anybody help...<br />
Thanks</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>jibugeo</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141278.html</guid>
		</item>
		<item>
			<title>Real-time graphing of an accelerometer</title>
			<link>http://www.daniweb.com/forums/thread141183.html</link>
			<pubDate>Wed, 20 Aug 2008 02:17:08 GMT</pubDate>
			<description><![CDATA[Hi, I'm trying to write a very simple program to graph data via Bluetooth accelerometer (which runs on COM6). All I need is for it to take ASCII datathat comes into Hyperterminal like this:
Y=2.316

Y=2.283

Y=2.233

Y=2.216

Y=1.850]]></description>
			<content:encoded><![CDATA[<div>Hi, I'm trying to write a very simple program to graph data via Bluetooth accelerometer (which runs on COM6). All I need is for it to take ASCII datathat comes into Hyperterminal like this:<br />
Y=2.316<br />
<br />
Y=2.283<br />
<br />
Y=2.233<br />
<br />
Y=2.216<br />
<br />
Y=1.850<br />
<br />
Y=2.033<br />
<br />
Y=2.016<br />
<br />
Y=1.833<br />
<br />
Y=1.633<br />
<br />
Y=1.516<br />
<br />
Y=1.283<br />
<br />
Y=1.200<br />
<br />
to then be graphed vs. time in real-time, with perhaps a quick averaging algorithm to reduce noise. That's it. Could anyone point me in the right direction.<br />
<br />
 Basically, I'd need it to be able to do this:<br />
<br />
1. I have to connect the program to the Accelerometer via COM6<br />
<br />
2. I have to then press &quot;1&quot; to start the data transmision, which could be tied into a &quot;Start&quot;  button<br />
<br />
3. Graph that data vs. time until i hit some sort of stop button<br />
<br />
 That's it. Anyone? Help would be GREATLY appreciated. This is for a physics application that we plan to take to Highschools to get kids more interested in Engineering as a profession. I am in Mechanical Engineering at Ohio State and have absolutely no experience programming. I downloaded SharpDevelop, but am really just lost. If anyone knows of good tutorials, existing programs, or wants to take a stab at it, I would be forever greatful.<br />
<br />
Thanks so much<br />
Dan</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>DLDude</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141183.html</guid>
		</item>
		<item>
			<title>How to add a colimn in Datagrid at runtime</title>
			<link>http://www.daniweb.com/forums/thread141149.html</link>
			<pubDate>Tue, 19 Aug 2008 19:35:09 GMT</pubDate>
			<description><![CDATA[Hi all, Iwant to know is there any way to add a new column in datagrid depending upon the value of a combobox. I have columns in a table whose names are same as combobox's items names. I need to add that column in datagrid which value is selected by user.
Please help me its urgent]]></description>
			<content:encoded><![CDATA[<div>Hi all, Iwant to know is there any way to add a new column in datagrid depending upon the value of a combobox. I have columns in a table whose names are same as combobox's items names. I need to add that column in datagrid which value is selected by user.<br />
Please help me its urgent</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>Gaurav arora</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141149.html</guid>
		</item>
		<item>
			<title>How to find source IPAddress of packet ?</title>
			<link>http://www.daniweb.com/forums/thread141074.html</link>
			<pubDate>Tue, 19 Aug 2008 12:03:07 GMT</pubDate>
			<description>Hi all,
  I am writing code for finding source address of packets, so that i discard them if the ipaddress is not a valid one. For this, i think i have to make a raw socket  and continuously sniff the network. Now, if any packet arrives, how to catch the packet and retrieves information from its...</description>
			<content:encoded><![CDATA[<div>Hi all,<br />
  I am writing code for finding source address of packets, so that i discard them if the ipaddress is not a valid one. For this, i think i have to make a raw socket  and continuously sniff the network. Now, if any packet arrives, how to catch the packet and retrieves information from its header.<br />
<br />
Please help me with a proper solution.<br />
<br />
Thanks in advance.:)</div> ]]></content:encoded>
			<category domain="http://www.daniweb.com/forums/forum61.html">C#</category>
			<dc:creator>RaooF</dc:creator>
			<guid isPermaLink="true">http://www.daniweb.com/forums/thread141074.html</guid>
		</item>
	</channel>
</rss>
