I wist to create a dialog that does not minimise when the main application is minimised.
The code I use to create the other dialog is:-
CAData::CAData(CUDP_RxDlg* pParent /*=NULL*/)
: CDialog(CAData::IDD, pParent)
Where CUDP_RxDlg is the Main dialog of the application.
I am told that if I set the parent to NULL then this is how to do it, but I get errors if I do the following:-
CAData::CAircraftData(CUDP_RxDlg* NULL)
: CDialog(CAData::IDD, pParent)
What am I doing wrong?
Sweep
The code I use to create the other dialog is:-
CAData::CAData(CUDP_RxDlg* pParent /*=NULL*/)
: CDialog(CAData::IDD, pParent)
Where CUDP_RxDlg is the Main dialog of the application.
I am told that if I set the parent to NULL then this is how to do it, but I get errors if I do the following:-
CAData::CAircraftData(CUDP_RxDlg* NULL)
: CDialog(CAData::IDD, pParent)
What am I doing wrong?
Sweep