Hi.
I know what im doing wrong but i dont know how to fix it.
I have the follow code
I know that it now just looks at the path. But i need it to read the INSIDE of the txt file. How would i manage that?
I know what im doing wrong but i dont know how to fix it.
I have the follow code
Code:
Private Sub Command1_Click()
If Text2.Text = App.Path & "\members\" & Text1.Text & "\password.txt" Then
MainForm.Show
LoginForm.Hide
Else
MsgBox "Please check your Username/Pass.", vbCritical, "Wrong Login!"
End If
End Sub
Comment