Page 1 of 1

DBLookupComboBox

PostPosted: July 8th, 2005, 7:34 pm
by Naser
I want after form show select the first item of DBLookuoComboBox
Please Help Me Thanks

PostPosted: July 10th, 2005, 8:32 pm
by Radagast
Code: Select all
Form1.OnShow;
begin
 DBLookupComboBox.Items.Index:=0;
end;

albo
Code: Select all
DBLookupComboBox.ItemIndex:=0;

:?: Have you checked it? It works for normal ComboBox so I don't see any reason it shoul be different, but I can't check cause I don't have that component.