Hello,
I am C++ newbie. I am starting with programming. I need a help. What should I do when I need to print error for user. This is in case when I try to open file
so when the file is not open, the user should see dialog box "Cannot open file"... and a button to submit the dialogue box.
I am C++ newbie. I am starting with programming. I need a help. What should I do when I need to print error for user. This is in case when I try to open file
Code:
try
{
scen.open(ScenPath, TempPath);
}
catch (std::exception &ex)
{
}
