home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TPBOOK.ZIP / TPBOOK.EXE / SOURCE.EXE / DMSGBOX3.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-08-07  |  216 b   |  10 lines

  1. { DMSGBOX3.PAS
  2.   Demonstrates use of InputBox
  3. }
  4. procedure TShell.DemoInputBox;
  5. var
  6.   Control : Word;
  7. begin
  8.   Control := InputBox('The Title', 'Enter some text:', FileName, 30);
  9. end; { TShell.DemoInputBox }
  10.