PDA

Click to See Complete Forum and Search --> : how to upload program to internet


nigel_chong98
Aug 1st, 2000, 06:11 AM
Can i upload a complied program done in standard exe under VB6 onto internet? If it is possible, can you give some advices or example for me to follow.

Thank you.

Dim
Aug 1st, 2000, 07:43 AM
This would upload file:

Inet1.AccessType = icUseDefault
Inet1.URL = "xxx.xxx.xxx.xxx"
Inet1.UserName = "me"
Inet1.Password = "***"
Inet1.RequestTimeout = 40
Inet1.Execute , "PUT C:\test.txt test.txt"


Gl,
D!m

[Edited by Dim on 08-01-2000 at 08:46 AM]