Hi everybody I am using the following code in my program.
try
{
ret = runBuf(myJob);
Info("Ok");
}
catch
{
Info("Failed");
}
The problem is when runBuf fails to compile. It's Error message still
shows while the purpose of putting this inside try catch was, I wanted
to display my own message. What could be wrong here????
Thanks everybody in advance.

