|
void DPlot_SetErrorMethod(int method);
Allows the developer to control how error conditions are reported to the user.
Parameters
method | Code describing error reporting.
0 | No error reports |
1 | Error messages reported using OutputDebugString. This is the default. While less intrusive than MessageBox (method=2), this option is of no use for developers w/o the tools necessary to trap output to OutputDebugString. |
2 | System-modal MessageBox. |
|
|
|