jctjepkmea
Member
- Joined
- Apr 15, 2009
- Messages
- 5
- Programming Experience
- Beginner
hello is here any one who can help me.
I have this code but it stops on the rule withe the*..* and vb makes that rule Yellow. could you help me??
Thanks
I have this code but it stops on the rule withe the*..* and vb makes that rule Yellow. could you help me??
Thanks
VB.NET:
Dim namefile As String
namefile = TextBox1.Text
If TextBox1.Text = "" Then
MsgBox("fil in a username!")
Else
If TextBox2.Text = "" Then
MsgBox("fil in a password")
Else
*Write(CurDir() & "\Accounts\" & namefile & ".txt")*
Print(namefile, TextBox1.Text)
Print(namefile, TextBox2.Text)
End If
End If