Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Show a simple input form
If you need to get some information from user, you may use InputQuery function. This function will create a simple input dialog.
procedure TForm1.Button1Click(Sender: TObject);
var
Str: string;
begin
if InputQuery('MyProgram dialog', 'Input something', Str) then
Caption:=Str;
end;
-
More for developers