creative
Gebruiker
- Lid geworden
- 25 dec 2006
- Berichten
- 298
hallo mede helpmij'ers ik zit met een klijn probleempje
If My.Computer.FileSystem.DirectoryExists("D:\users") + TextBox1.Text + "\" = True Then word steeds gee; wat is er fout aan ?
Code:
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
If My.Computer.FileSystem.DirectoryExists("D:\users\") = True Then
Else
MkDir("D:\users")
End If
[SIZE="6"] If My.Computer.FileSystem.DirectoryExists("D:\users") + TextBox1.Text + "\" = True Then[/SIZE]
MsgBox("Error, Account is al ingebruik")
Else
If TextBox1.Text = "" Then
MsgBox("error, je gebruikersnaam moet minimaal 5 letters bestaan")
Else
If TextBox2.Text = "" Then
MsgBox("Error, Voer een wachtwoord in ")
Else
MkDir("D:\users\" + TextBox1.Text)
Dim username As New System.IO.StreamWriter("D:\users\" + TextBox1.Text + "\" + "username.txt")
username.Write(TextBox1.Text)
username.Close()
Dim password As New System.IO.StreamWriter("D:\users\" + TextBox1.Text + "\" + "password.txt")
password.Write(TextBox2.Text)
password.Close()
End If
End If
End If