lazarus/docs/xml/lcl/dialogs/inputbox.pas
vincents 99df3c959b docs: updates from Graeme
* Removed duplicate documentation nodes from the dialogs.xml file.
 * Improved the docs and layout of the InputBox function.
 * Supplied an external sample of the InputBox function.
 * Improved the layout of the InputQuery docs.

git-svn-id: trunk@11123 -
2007-05-10 10:56:45 +00:00

14 lines
292 B
ObjectPascal

uses
Forms, LCLType, Dialogs, Controls;
procedure TryInputBox;
var
userstring: string;
begin
userstring := InputBox ('Get some text input',
'Please type in some information',
'Some sample text');
ShowMessage(userstring);
end;