Hertebeest
Gebruiker
- Lid geworden
- 10 mrt 2007
- Berichten
- 37
Tot zover lukt mijn programma aardig. Ik heb het zo gemaakt dat het een password uit een text file leest en dan laat inloggen of niet (ligt aan of het goed is ). Nou heeft iemand gevraagd of ik er een functie in kan zetten waar je het password in de file zelf verandert.
Hier heb ik problemen mee.
Dit is mijn inlog form.
Dan opent zich een andere form, form2.
Dit is de code voor form2.
Bij het stukje van If txtPassword.text = strREAD Then.....
Daar wil ik zorgen dat hij het password in de txt file verandert, iemand suggesties?
Gr, Hertebeest,.==.
Hier heb ik problemen mee.
Dit is mijn inlog form.
Code:
Private Sub cmdLogin_Click()
Dim strREAD As String
Dim strPassword As String
If txtPassword.Text = "" Then
txtPassword.SetFocus
Else
Open "H:\VB 6.0 apps\text.txt" For Input As #1
Do While Not EOF(1)
Input #1, strPassword
strREAD = strPassword
Loop
Close #1
If txtPassword.Text = strREAD Then
MsgBox "Correct Password!", , ""
Form2.Show
Else
MsgBox "Incorrect Password!", , ""
End If
End If
End Sub
Private Sub Form_Load()
txtPassword.PasswordChar = "*"
End Sub
Dan opent zich een andere form, form2.
Dit is de code voor form2.
Code:
Private Sub cmdLogin_Click()
Dim strREAD As String
Dim strPassword As String
If txtPassword.Text = "" Then
txtPassword.SetFocus
Else
Open "H:\VB 6.0 apps\text.txt" For Input As #1
Do While Not EOF(1)
Input #1, strPassword
strREAD = strPassword
Loop
Close #1
If txtPassword.Text = strREAD Then
Form3.Show
Else
MsgBox "Incorrect Password!", , ""
End If
End If
End Sub
Bij het stukje van If txtPassword.text = strREAD Then.....
Daar wil ik zorgen dat hij het password in de txt file verandert, iemand suggesties?
Gr, Hertebeest,.==.
