Z
Zalek Bloom
Up to today Close() always worked like a charm in my programs, but
something happened when I coded:
If w_password_created = True Then
If Text_password1 = w_password Then
MsgBox("equal")
Close()
Else
MsgBox("Invalid password, enter again")
Return
End If
End If
If Text_password1 <> Text_password2 Then
MsgBox("password 1 not = password 2, please correct")
Return
End If
What I am getting in my program that first I see MsgBox("equal")
display, next I see MsgBox("password 1 not = password 2, please
correct")
But I coded Close() after the first display - why Close() is not
working?
Thanks,
Zalek
something happened when I coded:
If w_password_created = True Then
If Text_password1 = w_password Then
MsgBox("equal")
Close()
Else
MsgBox("Invalid password, enter again")
Return
End If
End If
If Text_password1 <> Text_password2 Then
MsgBox("password 1 not = password 2, please correct")
Return
End If
What I am getting in my program that first I see MsgBox("equal")
display, next I see MsgBox("password 1 not = password 2, please
correct")
But I coded Close() after the first display - why Close() is not
working?
Thanks,
Zalek