home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 May
/
VPR9705A.ISO
/
VPR_DATA
/
PROGRAM
/
CBTRIAL
/
SETUP
/
DATA.Z
/
DBLOGDLG.INT
< prev
next >
Wrap
Text File
|
1997-02-14
|
1KB
|
37 lines
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ }
{ Copyright (c) 1995,96 Borland International }
{ }
{*******************************************************}
unit DBLogDlg;
{$P+}
interface
uses SysUtils, Windows, Messages, Classes, Graphics, Controls,
Forms, StdCtrls, ExtCtrls;
type
TLoginDialog = class(TForm)
Panel: TPanel;
Bevel: TBevel;
DatabaseName: TLabel;
UserName: TEdit;
Password: TEdit;
OKButton: TButton;
CancelButton: TButton;
end;
function LoginDialog(const ADatabaseName: string;
var AUserName, APassword: string): Boolean;
function LoginDialogEx(const ADatabaseName: string;
var AUserName, APassword: string; NameReadOnly: Boolean): Boolean;
implementation