I am trying to use this command in CRW8. This is an example of the code I have written:
While starthour >= 24 Do
startdate := startdate + 1;
starthour := starthour - 24;
Exit While;
When I try to save this I get the following error:
'exit while' without an enclosing 'while' loop
The on-line help doesn't offer much help in how to write this. Can anybody give me some tips on this command?
Thanks!
While starthour >= 24 Do
startdate := startdate + 1;
starthour := starthour - 24;
Exit While;
When I try to save this I get the following error:
'exit while' without an enclosing 'while' loop
The on-line help doesn't offer much help in how to write this. Can anybody give me some tips on this command?
Thanks!