Knob, Thanks for helping me with the last question.
I have to store login id(alpha-numeric) and password(numeric) received from client for further operations. Can you help me with this or show me some examples.
I do see that rget, comread can be used. Not sure which one should I use.
Please find my test script. Something wrong with this. It displays LOGIN: in the message box dialog, which should actually display the value of ID.
proc main
string LOGIN
while 1
while ($CARRIER == 0 )
yield
endwhile
transmit "LOGIN:^M "
rget LOGIN 7 300
usermsg LOGIN
endwhile
end proc
I have to store login id(alpha-numeric) and password(numeric) received from client for further operations. Can you help me with this or show me some examples.
I do see that rget, comread can be used. Not sure which one should I use.
Please find my test script. Something wrong with this. It displays LOGIN: in the message box dialog, which should actually display the value of ID.
proc main
string LOGIN
while 1
while ($CARRIER == 0 )
yield
endwhile
transmit "LOGIN:^M "
rget LOGIN 7 300
usermsg LOGIN
endwhile
end proc