Re: Exception on connect (General questions)
Thanks,
I've solved it catching the exception this way:
try
{
// Execute some code that might throw an exception.
m_Ftp.Connect(var,var,var);
}
catch( COleDispatchException* e )
{
// Handle the exception here.
e->Delete();
}