Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB/VFP Question

Status
Not open for further replies.

fdc

IS-IT--Management
Dec 26, 2001
15
US
In another forum somone suggested using VB's While-Wend function to allow for completion of a process (OLE connect, and file transfers with PCanywhere). I don't know VB...... is there a VFP equivalent?
Thanks.
 
The VB loop structure:
WHILE lcondition
' commands
WEND

corresponds to the VFP loop structure:
DO WHILE lcondition
* commands
ENDDO

The other commands/functions in the example you found are probably going to give you more trouble. Post the example and we can help you convert it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top