blah blah blah is here! blah blah » Close

0
votes
1 answers

serial port locks program C#

Hello, I'm trying to monitor data from my serial port, but as soon as I start to read out and display the data on my screen I can't press any button in my program anymore. I assume the program is too busy with my serial port that it does ...

1
votes
4 answers

C#: can't get XML first element

[code] HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mysite.com/XML.php"); HttpWebResponse res = (HttpWebResponse)request.GetResponse(); StreamReader in = new StreamRea ...

Feedback