Click here to Skip to main content
15,886,518 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every one,

I developed win application to read messages from Modem it runs successfully but i have to execute application again and again to read modem.What i want is to make application that runs continuously and read messages and invoke it self when ever any new message arrives? what strategy i should use for this.?
Posted
Comments
Andy411 13-Nov-12 10:08am    
How do you read from the modem? Can you post some code? The solutions I know, do it in a loop and/or consuming events like DataReceived.
Is it a console application or WinForm/WPF?

1 solution

If you have an application that needs to perform the same action over and over again, then you need to wrap that functionality in a loop of some kind. On every iteration of the loop, perform the "read" as you call it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900