home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / DBINPREQ.INT < prev    next >
Text File  |  1997-02-28  |  1KB  |  37 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Delphi Visual Component Library                 }
  5. {                                                       }
  6. {       Copyright (c) 1996 Borland International        }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit DBInpReq;
  11.  
  12. {$R-}
  13.  
  14. interface
  15.  
  16. uses Windows, Classes, SysUtils, Forms, Controls, StdCtrls, ExtCtrls,
  17.   BDE, Dialogs;
  18.  
  19. type
  20.   TInputReqDialog = class(TForm)
  21.     OKButton: TButton;
  22.     CancelButton: TButton;
  23.     InputOptions: TPanel;
  24.     NoPromptAgain: TCheckBox;
  25.     ErrorHelp: TLabel;
  26.     InputMessage: TLabel;
  27.     ErrorGroupBox: TPanel;
  28.     ErrorGoupBoxSpacer: TPanel;
  29.     DescriptionGroupBox: TPanel;
  30.     DescriptionGroupBoxSpacer: TPanel;
  31.     procedure InputOptionsClick(Sender: TObject);
  32.   end;
  33.  
  34. function InputRequest(var InputReqInfo: CBInputDesc): CBRType;
  35.  
  36. implementation
  37.