-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Beakerboy <[email protected]>
- Loading branch information
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
VERSION 5.00 | ||
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} Login | ||
Caption = "Please Log In" | ||
ClientHeight = 1920 | ||
ClientLeft = 120 | ||
ClientTop = 465 | ||
ClientWidth = 2295 | ||
OleObjectBlob = "Login.frx":0000 | ||
StartUpPosition = 1 'CenterOwner | ||
End | ||
Attribute VB_Name = "Login" | ||
Attribute VB_GlobalNameSpace = False | ||
Attribute VB_Creatable = False | ||
Attribute VB_PredeclaredId = True | ||
Attribute VB_Exposed = False | ||
Public Ready As Boolean | ||
|
||
Private Sub Form_Load() | ||
Me.Show | ||
Ready = False | ||
Call Wait | ||
'Label1.Visible = True | ||
End Sub | ||
|
||
Public Function Wait() | ||
Do While Ready = False | ||
DoEvents | ||
Loop | ||
End Function | ||
|
||
Private Sub LoginButton_Click() | ||
Ready = True | ||
Me.Hide | ||
End Sub | ||
VERSION 5.00 | ||
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} Login | ||
Caption = "Please Log In" | ||
ClientHeight = 1920 | ||
ClientLeft = 120 | ||
ClientTop = 465 | ||
ClientWidth = 2295 | ||
OleObjectBlob = "Login.frx":0000 | ||
StartUpPosition = 1 'CenterOwner | ||
End | ||
Attribute VB_Name = "Login" | ||
Attribute VB_GlobalNameSpace = False | ||
Attribute VB_Creatable = False | ||
Attribute VB_PredeclaredId = True | ||
Attribute VB_Exposed = False | ||
Public Ready As Boolean | ||
|
||
Private Sub Form_Load() | ||
Me.Show | ||
Ready = False | ||
Call Wait | ||
'Label1.Visible = True | ||
End Sub | ||
|
||
Public Function Wait() | ||
Do While Ready = False | ||
DoEvents | ||
Loop | ||
End Function | ||
|
||
Private Sub LoginButton_Click() | ||
Ready = True | ||
Me.Hide | ||
End Sub |