Article ID: 140525 - Last Review: January 27, 2005 - Revision: 3.4 How to receive from the serial port by using MScomm32.ocx in Visual FoxProThis article was previously published under Q140525 On This PageSUMMARY
This article gives you two techniques you can use to receive data from the
serial port using the Mscomm32.ocx control. The first uses an event-driven
method and does not require you to poll the serial port to check for the
presence of received characters. This technique allows the most flexibility
and does not require extensive coding to prevent buffer over-runs. The
second technique requires you to poll the input buffer periodically to
check for the presence of received characters. This article describes these
two techniques and provides examples for each.
MORE INFORMATION
Set the following properties regardless of which technique
you use:
Technique one: Event-driven receiveThe event Driven technique generates an OnComm event when there are characters waiting in the input buffer. Also, the CommEvent property will contain a numeric 2. For the OnComm event to be triggered, you must set the Rthreshold property to a value other than zero (its default). The most common setting for the Rthreshold property is 1, meaning that the OnComm event is triggered if a minimum of one character is waiting in the input buffer.For example, you can place the following code in the OnComm event to append received data to a property of a form called mybuffer: Technique two: Polling the input bufferPolling the input buffer requires that the program periodically stop what it is doing and check to see if there are characters waiting in the input buffer. When using this technique, leave the Rthreshold property at 0 (its default value), and check the InBufferCount property to see if it is greater than zero, which indicates that there are characters waiting in the buffer.Note Using a technique such as checking the length of the Input property results in lost characters because as soon as the Input property is accessed, the Input buffer is emptied. Use the InBufferCount property instead. Assuming the Mscomm control is on the form and has the name MyCom and that there is a form property named mybuffer, the following code illustrates how to poll for waiting characters: APPLIES TO
| Article Translations
|

Back to the top
