Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » CExtGridCellCheckListComboBox Question Collapse All
Subject Author Date
Offer Har Jan 24, 2007 - 2:00 PM

Dear Support,

I need to prevent the user from editing the text in the text box, but only check/un-check items in the combo box of CExtGridCellCheckListComboBox.

How do i do this?

Thanks,
Ron.

Suhai Gyorgy Jan 25, 2007 - 4:07 AM

Just specify __EGCS_NO_INPLACE_CONTROL style to the cell. You can check how it is done and how it works in the fifth CExtGridCellCheckListComboBox on the Grid page of the ProfUIS-Controls sample. In _InitColumnCheckComboBox method look for the line
pCellComboBox4->ModifyStyle( __EGCS_NO_INPLACE_CONTROL );

Offer Har Jan 29, 2007 - 1:09 PM

Thanks Suhai.