I have a combobox that has a lot of items inside and I have to get into a variable the name of the selected item.
var a:string;
begin
a:=ComboBox1.Text;
end;
This is the way I used for a Delphi VCL application and it works. Here I'm developing with Firemonkey and Android, I haven't the text
property.
How can I get the text of the selected item on my combobox?