How to get the selected value from a TComboBox?
TComboBox
The TCombobox name is comboTest
TCombobox
comboTest
vaue_is := comboTest ???
You can use ItemIndex:
if comboTest.ItemIndex >= 0 then vaue_is := comboTest.Items[comboTest.ItemIndex];
This should work equally well for VCL and FireMonkey (FMX).
You can use ItemIndex:
This should work equally well for VCL and FireMonkey (FMX).