home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
DBINPREQ.INT
< prev
next >
Wrap
Text File
|
1997-02-28
|
1KB
|
37 lines
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ }
{ Copyright (c) 1996 Borland International }
{ }
{*******************************************************}
unit DBInpReq;
{$R-}
interface
uses Windows, Classes, SysUtils, Forms, Controls, StdCtrls, ExtCtrls,
BDE, Dialogs;
type
TInputReqDialog = class(TForm)
OKButton: TButton;
CancelButton: TButton;
InputOptions: TPanel;
NoPromptAgain: TCheckBox;
ErrorHelp: TLabel;
InputMessage: TLabel;
ErrorGroupBox: TPanel;
ErrorGoupBoxSpacer: TPanel;
DescriptionGroupBox: TPanel;
DescriptionGroupBoxSpacer: TPanel;
procedure InputOptionsClick(Sender: TObject);
end;
function InputRequest(var InputReqInfo: CBInputDesc): CBRType;
implementation