Click here to Skip to main content
15,894,096 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have an application in which there are two interfaces say Serial and USB and I am using two dialog for Serial and USB separate by tab control to differentiate these Interfaces. And when I click the USB Tab then one Combo box have to show that now we operate on Serial or disable it and vice verse.So my question is how to do it.
Thanks in advance
Posted
Comments
Richard MacCutchan 22-Jun-13 7:09am    
How to do what? Please edit your question and explain exactly what it is that you do not know how to do: select a tab, display some text in a label, set a radio button on ... ?
debarunb 22-Jun-13 7:37am    
I solve my problem by using OnNMClickSelTab() method of tab control thanks for your reply.
Actually I want to disable combo box control on clicking the tab control

1 solution

In the handler for the tab control, do:

C++
m_ctrlBlah.EnableWindow(FALSE);
 
Share this answer
 
Comments
debarunb 22-Jun-13 8:44am    
yes sir I got it..Thanks for your reply..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900