Hello
I am trying to run this code:
////////////////////////////////////////////////////////////////
// Event delegate for 'timer' event
proc page1_Section1_field1_timer()
// insert your code here
if ComForm.PortOpen=.T.
Do Case
Case m_sent=.T.
If ComForm.Inbuffercount=15 && Data is wating in the input buffer
ret=ComForm.Input
m_sent=.F.
Endif
Case m_sent=.F.
ComForm.Output=Chr(87)+Chr(13)
m_sent=.T.
Endcase
Endif
endproc
I can't get the timer to run. Any help would be greatly appreciated.
Bookmarks