Re: Combox problem in Windows 2000 OS
Joseph M. Newcomer wrote:
Did you size the combobox to be other than zero height? Or take a look at my
dynamically-resizing combo box on my MVP Tips site.
joe
On 4 Jul 2006 17:11:09 -0700, "RAG" <raghavenderb@hcl.in> wrote:
Hi ,Iam facing a problem of displaying items in a combobox controll in
windows 2000 OS (VC++ 6),the same code which runs on (VC++ 7 .Net) XP
is displaying the strings added to the combobox.
Can any one solve my problem
Joseph M. Newcomer [MVP]
email: newcomer@flounder.com
Web: http://www.flounder.com
MVP Tips: http://www.flounder.com/mvp_tips.htm
Hi, the same code I am executing on windows 2000 platform and windows
XP OS (both on VC++ 7 .Net compilers)
Inside OnInitDialog() {
CComboBox * pComboBox;
pComboBox = (CComboBox *)GetDlgItem(IDC_CMB_UEMSPOP);
pComboBox->InsertString(0,_T("To USE"));
pComboBox->InsertString(1,_T("Not To USE"));
pComboBox->SetCurSel(0);
}
For Window 2000 OS the Combobox drop down items are not displayed at
all, but when I run on windows XP OS same code is executing normal
showing items in the combobox.
(I think any resource IDR_Manifest problem involved)Thanks in advance
if you solve my problem.