Parallel
async.asc
Associated article: Asynchronous Communication andVisual FoxPro
Tags: Parallel Design
Source code accompanying the article by BB Howard in which he demonstrates how you can use Visual FxPro to connect to a remote PC establish a network connection, it's hard drive and transfer files from net PC to another using familiar FxPro functins such as "GetFile()" CPY FILE and the like
_Asynchronous Communication and Visual FoxPro_ by Bob Howard Listing One 001 *!* Sendit.PRG *!* 002 003 SET PROC TO sendit.prg 004 005 *!* Function to Dial the Connection 006 007 DECLARE INTEGER RasDial ; 008 IN C:WINDOWSSYSTEMRASAPI32.DLL ; 009 INTEGER @, INTEGER @, STRING @, INTEGER , INTEGER , INTEGER @ 010 011 *!* Function to return any errors ...


