Bryan - Gendev
Programmer
I am using vfpconnect.fll to get a file from my server using HTTPGET from the vfp connection library and want to implement a progress indicator.
Using the prg included with the fll I have
<code>
***********************
FUNCTION MyProgress() && Callback from the FLL - can be used to track operation progress
***********************
*!* You can create your own function, procedure or method to handle this and name it whatever you want.
*!* The nConnectTotalBytes and nConnectBytesSoFar are private variables created on-the-fly by the FLL
?m.nConnectTotalBytes
?m.nConnectBytesSoFar
ENDFUNC
</code>
Using the code as it stands my app can't find the 2 variables.
How can I access them please?
Is there a code snippet anywhere that implements this?
Many thanks
GenDev
Using the prg included with the fll I have
<code>
***********************
FUNCTION MyProgress() && Callback from the FLL - can be used to track operation progress
***********************
*!* You can create your own function, procedure or method to handle this and name it whatever you want.
*!* The nConnectTotalBytes and nConnectBytesSoFar are private variables created on-the-fly by the FLL
?m.nConnectTotalBytes
?m.nConnectBytesSoFar
ENDFUNC
</code>
Using the code as it stands my app can't find the 2 variables.
How can I access them please?
Is there a code snippet anywhere that implements this?
Many thanks
GenDev