Where can I find the meaning of error values (nErr)?
3 L A T E S T R E P L I E S (Newest First)
Penn
Posted - 10/09/2010 : 02:27:48 AM Hi,
It is about the parameter, which is a pointer to Nag_E04_Opt structure. It is not safe to pass the default pointer to this parameter. Please refer to this example on how to call this function.
Penn
Alex-qwerty
Posted - 10/08/2010 : 4:30:33 PM I know about NagError. But sometimes it is useless. It has correct error code if there was NO exception. Sometimes my project crashes without try/catch statement. Try/catch allows to keep project alive. Try/catch return error code (288), but I don't know the meaning of thise code.
Penn
Posted - 10/08/2010 : 01:34:44 AM Hi,
All NAG functions accept one argument, NagError structure. This structure is used to test whether the NAG function is executing successfully or not. So you can use this structure instead, but not the try/catch. Please refer to this example.