Skip to content

#40 #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 28, 2023
Merged

#40 #44

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions src/Forms/Login.frm
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