HTTP upload sample

bluedude

Well-Known Member
Licensed User
Longtime User
Hi,

Does anyone have a fully working HTTP upload sample? The included sample does not work it seems. I get a byte error.
 

timsteeman

Member
Licensed User
Longtime User
Hi Bluedude,
Had the same problem some weeks ago;

the solution for the not working of the sample is....

Dim buffer(4096) As byte must be declared as global

(so declared in the beginning of the program!)
 
Top