Re: Need help resolving modeless dialog issue
On Jul 30, 5:10 pm, "AliR \(VC++ MVP\)" <A...@online.nospam> wrote:
Can you post the dialogs constructor, DoDataExchange and OnInitDialog?
The constructor is excessively long (~400 lines), so I'll try to post
only what is relevant.
CPrgEditorDialog::CPrgEditorDialog(CWnd* pParent /* = NULL*/)
: CDialog(CPrgEditorDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(CPrgEditorDialog)
m_csListCommands = _T("");
m_csListModels = _T("");
m_csListVariables = _T("");
m_csLblCommands = _T("");
m_csLblVariables = _T("");
m_InsertionEditString = _T("");
//}}AFX_DATA_INIT
AfxInitRichEdit();
//DragAcceptFiles(true);
RECT* prect = new RECT;
if (!Create(IDD_ProgEditor, NULL))
MessageBox(_T("YEP, failed it"),_T("YURP"),MB_OK);
this->SetWindowPos(&wndTop, 0, 0, m_nDefsizex, m_nDefsizey,
SWP_SHOWWINDOW);
void CPrgEditorDialog::DoDataExchange(CDataExchange* pDX)
{ //Most of these are irrelevant, as I do not use them.
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPrgEditorDialog)
DDX_Control(pDX, IDC_VerboseOut, m_VerboseOut);
DDX_Control(pDX, IDC_CHECKFunctions, m_CheckFunctions);
DDX_Control(pDX, IDC_STATICModels, m_lblModels);
DDX_Control(pDX, IDC_CHECKVariables, m_CheckVariables);
DDX_Control(pDX, IDC_CHECKSyntax, m_CheckSyntax);
DDX_Control(pDX, IDC_CHECKNumbers, m_CheckNumbers);
DDX_Control(pDX, IDC_CHECKOperators, m_CheckOperators);
DDX_Control(pDX, IDC_CHECKControls, m_CheckControls);
DDX_Control(pDX, IDC_CHECKCommands, m_CheckCommands);
DDX_Control(pDX, IDC_RICHEDIT1, m_REditControl);
DDX_Control(pDX, IDC_STATICVars, m_lblVars);
DDX_Control(pDX, IDC_executeButton, m_btnExecute);
DDX_Control(pDX, IDC_RecheckButton, m_btnSyntax);
DDX_Control(pDX, IDC_PROGRESS1, m_progbarcontrol);
DDX_Control(pDX, IDC_LIST4, m_ListVariables);
DDX_Control(pDX, IDC_LIST1, m_ListCommands);
DDX_Control(pDX, IDC_TLMarker, m_TLMarker);
DDX_Control(pDX, IDC_InsertionEdit, m_InsertionEditControl);
DDX_Control(pDX, IDC_STATIC2, m_lblVariableInfo);
DDX_Control(pDX, IDC_STATIC1, m_lblCommandInfo);
DDX_Control(pDX, IDC_LIST3, m_ListModels);
DDX_LBString(pDX, IDC_LIST1, m_csListCommands);
DDX_LBString(pDX, IDC_LIST3, m_csListModels);
DDX_LBString(pDX, IDC_LIST4, m_csListVariables);
DDX_Text(pDX, IDC_STATIC1, m_csLblCommands);
DDX_Text(pDX, IDC_STATIC2, m_csLblVariables);
DDX_Text(pDX, IDC_InsertionEdit, m_InsertionEditString);
//}}AFX_DATA_MAP
}
There is no overloaded OnInitDialog.