C++ Builder XE8
if i select Num 1 Memo will show Test
if i select other items memo will show Else Test
void __fastcall TForm1::FormCreate(TObject *Sender)
{
ListBox1->Items->Add("Num 1");
ListBox1->Items->Add("Num 2");
ListBox1->Items->Add("Num 3");
auto str = listBox1->SelectedItem->ToString();
if (str == L"Num 1") {
Memo1->Text = "Test";
}
else {
Memo1->Text = "Else Test";
}
}
The Form's
OnCreate
event (which you SHOULD NOT be using in C++, use the Form's constructor instead) is too soon to detect the user's selection, as the user has not had a chance to see the UI yet to select anything. Use the ListBox'sOnChange
event instead.Also,
TListBox
does not have aSelectedItem
property. In FireMonkey (which I assume you are using instead of VCL), it has aSelected
property instead.Try this: