Jump to content

Evgeny Pol

Members
  • Posts

    13
  • Joined

  • Last visited

Posts posted by Evgeny Pol

  1. >popup list is still showing the records related to 'Malvinas', expected to show records Like % 'Malvinas'.

    You wanted to say: ... expected to show records Like '%United'?

    The following code will help you

     

    procedure TMainForm.UniButton2Click(Sender: TObject);

    begin

    UniComboBox1.Clear;

    UniComboBox1.Text:='United';

    UniComboBox1RemoteQuery(UniComboBox1.Text,UniComboBox1.Items);

    end;

  2. Really UniComboBox or UniDBComboBox?

     

    For UniDBComboBox:

     

    type

    TUniDBComboBox1=class(TUniDBComboBox)

    end;

     

    procedure TMainForm.UniFormCreate(Sender: TObject);

    begin

    TUniDBComboBox1(UniDBComboBox1).MinQueryLength:=0;

    end;

×
×
  • Create New...