ZTRACE_RUNTIME("Creating Processing Panel");
BOOL result = processingDlg.Create(IDD_PROCESSING);
if (FALSE == result)
{
int lastErr = GetLastError();
ZTRACE_RUNTIME("lastErr = %d", lastErr);
}
This is a debug build.
Problems:
- I can't step into
Createusing F11??? - Result was set to
0, soGetLastErrorwas invoked, but that returned0!
What am I doing wrong?