Hi,
here is the piece of code I have a problem with:
void ftp_Connected(FTP source)
{
MessageBox.Show("connected! successfully");
_ftp.Disconnect();
nwstApplication._loginSuccessful = true;
this.Close();
}
Everything goes well untill this.Close() where I am getting an exception thrown and the stack shows it's being thrown in ConnectThread() in your FTP.cs class.
Any ideas?
I should be able to disconnect and close the form, correct?
Thanks in advance.