I am working on Hyper terminal to capture the data from Com1 port. I have configured it and the file I have is .ht file on the desktop where I can open and see the data.

The device that connected is a weight scale device. I can capture the data through hyper terminal and save it to a text file. But it is a continuous capturing and saving to that text file.

I am developing a web service in C# to get the weight data from hyper terminal. All I need from web service is to get the weight data from the scale when I want to.

I am thinking the way I can accomplish this is I have to turn on the hyper terminal, capture the data and turn off the hyper terminal. But I don't know how can I do this in C#.

Any suggestions will be appreciated. and please let me know if you need more info.

link|improve this question

71% accept rate
HyperTerminal is simply reading from the COM port. You would need to do the same with the web service. – John Saunders Jan 25 at 17:52
feedback

1 Answer

up vote 1 down vote accepted

You don't need hyper terminal. You can use System.IO.Ports.SerialPort class to communicate with COM ports

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.