hi to all,
Can anyone point me on the right direction on how make a simple software. On how to retreive data from the logbox and write to textfile.
Popskie
Printable View
hi to all,
Can anyone point me on the right direction on how make a simple software. On how to retreive data from the logbox and write to textfile.
Popskie
I'm not sure what a logbox is, but here is some code for writing to a text file
Code://top of file
using System.IO;
...
//in function
StreamWriter sw = new StreamWriter(new FileStream(YourFileName,FileMode.Append));
sw.WriteLine("Some Text");
sw.Close();
thanks for ur reply, but my primary problem is how to retrieve data from that machine. The logbox is attached in my com1 of my PC.