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();
}
Complete thread:
- Exception on connect - carl, 2005-10-11, 12:53
- Re: Exception on connect - wodSupport, 2005-10-11, 12:57
- Re: Exception on connect - carl, 2005-10-11, 13:56
- Re: Exception on connect - wodSupport, 2005-10-11, 13:57
- Re: Exception on connect - carl, 2005-10-11, 14:10
- Re: Exception on connect - wodSupport, 2005-10-11, 14:12
- Re: Exception on connect - carl, 2005-10-11, 14:10
- Re: Exception on connect - wodSupport, 2005-10-11, 13:57
- Re: Exception on connect - carl, 2005-10-11, 13:56
- Re: Exception on connect - wodSupport, 2005-10-11, 12:57