http://allyoucanupload.webshots.com/
Hi,
Can anyone gives me a sample of this?
Say I want to automate uploading pictures to http://allyoucanupload.webshots.com/
or my own forum. I'd like to automate posting to my own wordpress forum, for example, along with pics.
What can I do? Is there a code sample that allow me to do this?
Should I use regular webbrowser control? Should I use winhttp?
Is there a sample code on using file upload control somewhere on the net?
Re: http://allyoucanupload.webshots.com/
Re: http://allyoucanupload.webshots.com/
If you are doing a strickly web based application then I would suggest using a web based development language which VB6 is not.
Re: http://allyoucanupload.webshots.com/
I did a file upload thing for my web site using a php file upload script. i just ofllowed this simple turorial for that. http://www.w3schools.com/php/php_file_upload.asp
Re: http://allyoucanupload.webshots.com/
First of all, I am not trying to make a web based application. Yes I know PhP. I am trying to make a program that would run on desktop computer. So yes, VB6 is a suitable language.
Second I tried to upload files via a form. Hence, the ftp inet solutions doesn't work.
I can fill up forms just fine. However, one type of form, the one with <input type=file> is problematic.
On other htmlinputelement object, I can just do inp.value="Hello". However I can't do that for file input element object.
Maybe I should use winhttp. Is there a tutorial somewhere on how to upload files using a form in VB6