|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 05/27/2009 at 04:55AM PDT, ID: 24441096 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: |
**form init event code
PUBLIC gnFileHandle
* You should replace 'c:\sample.hlp' with your own file name
IF FILE('c:\FHIapps\sample.txt') && Does file exist?
gnErrFile = FOPEN('c:\FHIapps\sample.txt',12) && If so, open read-write
ELSE
gnErrFile = FCREATE('c:\FHIapps\sample.txt') && If not, create it
ENDIF
= FCLOSE(gnErrFile) && Close the file
STORE FOPEN('c:\FHIapps\sample.txt',1) TO gnFileHandle && Open the file
**Command button click code**
PUBLIC instring as character
* Use COM1.
thisform.testcom.CommPort = 1
* 9600 baud, no parity, 8 data, and 1 stop bit.
thisform.testcom.Settings = "9600,N,8,1"
* Tell the control to read entire buffer when Input is used.
thisform.testcom.InputLen = 0
* Open the port.
* Send the attention command to the modem.
* Wait for data to come back to the serial port.
DO WHILE thisform.testcom.InBufferCount = 2
* Read the "OK" response data in the serial port.
InString = thisform.testcom.Input
ENDDO
STORE instring TO thisform.text7.Value
* Close the serial port.
thisform.testcom.PortOpen = .F.
|
Advertisement