Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvMultiInputQueryDialog
Sample code

TAdvMultiInputQueryDialog is capable of displaying a dialog with multiple queries. After clicking OK, the values property can retrieve the value that has been entered, as demonstrated in the following sample.

var
  qv, qv2: TAdvMultiInputQueryValue;
  v, v2: String;
begin
  AdvMultiInputQueryDialog1.LabelWidth := 150;
  qv := AdvMultiInputQueryDialog1.QueryValues.Add;
  qv.&Label := ''This is a question?'';
  qv.Name := ''value1'';
  qv := AdvMultiInputQueryDialog1.QueryValues.Add;
  qv.&Label := ''This is another question?'';
  qv.Name := ''value2'';
  AdvMultiInputQueryDialog1.Execute(True);
  v := AdvMultiInputQueryDialog1.Values[''value1''].ResultValue;
  v2 := AdvMultiInputQueryDialog1.Values[''value2''].ResultValue;
end;

After clicking OK, v and v2 string values contain "Hello" & "World!"