/*[]=====================================================================[]*/ /*[] LeadTools C++ Class Library - Version 1.0 []*/ /*[] []*/ /*[] []*/ /*[] Copyright (c) 1991-2000 LEAD Technologies, Inc. []*/ /*[] All Rights Reserved. []*/ /*[]=====================================================================[]*/ //include files #include #pragma hdrstop #include "PassDlg.h" //--------------------------------------------------------------------- #pragma resource "*.dfm" TPasswordDlg *PasswordDlg; //--------------------------------------------------------------------- __fastcall TPasswordDlg::TPasswordDlg(TComponent* AOwner) : TForm(AOwner) { } //--------------------------------------------------------------------- void __fastcall TPasswordDlg::PasswordChange(TObject *Sender) { OKBtn->Enabled=(Password->GetTextLen()>0); } //--------------------------------------------------------------------------- void __fastcall TPasswordDlg::FormShow(TObject *Sender) { OKBtn->Enabled=FALSE; Password->Text=""; } //---------------------------------------------------------------------------