-
show FTP status....
:) hello i made a thread earlyer but i figured out what was wrong and changed how i do it but now i have another issue
My.Computer.Network.UploadFile(Form4.TextBox2.Text, "ftp://somesite.com" & Form4.Label1.Text, "uname", "pass", False, 10, FileIO.UICancelOption.DoNothing)
yes that works but i want it to show the upload progress...
i know if i set the boolen to true it shows the progess on its own UI but it also shows ware the image is beeing uploaded and i dont want that to happen.....
so dose anyone have an idea how i could show it on its own progress bar inside the form....
-
Re: show FTP status....
You can't use My.Computer.Network.UploadFile in that case. You'll need to use a WebClient, which has an UploadFileAsync method. You can call that and then handle the UploadProgressChanged event to get the required information to update your own ProgressBar.