How to Change Visibility of TextBoxes depending on ComboBox Selection?
Nov 25, 2012 at 8:09pm UTC
I want certain textboxes to become visible depending on the selection that is made in the comboBox but I can't figure it out and couldn't find any information online.
this is what I have:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
if (this ->cbInstr-> Text = "STOCKS" )
{
this ->tbStrike->Visible = false ;
this ->tbExp->Visible = false ;
// Type of instrument: Stock=STK,Option=OPT,Future=FUT, etc.
ContractInfo->secType = "STK" ;
}
else if (this ->cbInstr->Text = "OPTIONS" )
{
this ->tbStrike->Visible = true ;
this ->tbExp->Visible = true ;
ContractInfo->secType = "OPT" ;
}
else if (this ->cbInstr->Text = "FUTURES" )
{
this ->tbStrike->Visible = true ;
this ->tbExp->Visible = true ;
ContractInfo->secType = "FUT" ;
}
Topic archived. No new replies allowed.