Re: Exception on connect - WeOnlyDo Discussion board

Re: Exception on connect (General questions)

by carl, Tuesday, October 11, 2005, 13:56 (6982 days ago) @ wodSupport

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();
}


Complete thread: