Hi guys,
I have the following code in C#
dMC.GoConversion("MP3 (Lame)", 1, 1, 1, 1);
if (dMC.WasConvError != 0)
{
// blah blah...
}
which works fine most of the time. But now and then it throws an exception calling dMC.WasConvError. The message is 'The object invoked has diconnected from its clients'.
It always seems to have converted correctly. Is there any way I can delay the cleanup of the dMC object long enoug hto get this info.
Or does anyone know if the cleanup only takes place if there were no errors (so I can catch the exception and ignore it)
Cheers,
Matt.
I have the following code in C#
dMC.GoConversion("MP3 (Lame)", 1, 1, 1, 1);
if (dMC.WasConvError != 0)
{
// blah blah...
}
which works fine most of the time. But now and then it throws an exception calling dMC.WasConvError. The message is 'The object invoked has diconnected from its clients'.
It always seems to have converted correctly. Is there any way I can delay the cleanup of the dMC object long enoug hto get this info.
Or does anyone know if the cleanup only takes place if there were no errors (so I can catch the exception and ignore it)
Cheers,
Matt.
Comment