[Implemented] SendNetworkFile() progress callback
Posted: Fri Apr 30, 2004 12:12 pm
Since this function halts execution it would be nice to call it with a callback function in order to receive progress information etc.
eg.
SendNetworkFile(connectionID, "myfile", @callBack())
Procedure callBack(progress)
; do something with progress info.
EndProcedure
eg.
SendNetworkFile(connectionID, "myfile", @callBack())
Procedure callBack(progress)
; do something with progress info.
EndProcedure