Hello.Row 1 of what?
CTestDlg mDlg;
mDlg.m_iValue = 5;
mDlg.m_lValue = 481231273;
mDlg.m_strValue = "Test";
mDlg.DoModal();
CTestDlg mDlg = new CTestDlg();
Col-1 Value = ABC;
Col-2 Value = TEST;
Col-3 Value = Popup;
mDlg.ShowDialog();
var dialog = new TestDialog()
{
IntegerValue = 5,
LongValue = 481231273,
StringValue = "Test"
};
dialog.ShowDialog();
CTestDlg mDlg = new CTestDlg();
mDlg.m_iValue = 5;
mDlg.m_lValue = 481231273;
mDlg.m_strValue = "Test";
mDlg.ShowDialog();