CDialogBar
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
i'm writting an Activex control. i have CDialogBar attached to it. There uis a listbox in the CDialogBar. i tried to add a string to CList box. But it gives an Runtime error. I used the Folllowing code. CListBox *listBox=(CListBox *)GetDlgItem(IDC_LIST1); listBox->AddString(L"Hai"); i think listbox pointer not asigned to point the list box. Please help me.