On form1 i'am uploading and as a status i have a form2 pop up...on form2 i have a cancel button...how would i get it so when the cancel button is clicked..the upload is terminated and the Command_Click() sub on form one is exited.
This is what i tried:
Code:
'under the cancel button
Form1.Enabled = True
Form1.iNet1.Cancel
Unload Form2
so how would i stop the sub from continuing (something like "Exit Form1.Command1_Click() Sub" and stop the upload process.

Thank you,
D!m