Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~201 People Reached
Favorite Forums
Favorite Tags
Member Avatar for macbrutal

Sorry for "spamming" But this is really really important for a school project. 1. Can anyone of you paste me back the whole code that will make a textbox saying,"username already taken" When you try to create different account with same username. 2. If possible, publishing the program and then …

Member Avatar for jireh
0
102
Member Avatar for macbrutal

Private Sub Command1_Click() Dim namefile As String namefile = Text1.Text Open App.Path & "\Accounts\" + namefile + ".txt" For Output As #1 Print #1, Text1.Text Print #1, Text2.Text Print #1, Text3.Text Print #1, Text4.Text Close #1 MsgBox "Thank you for your registration, please login!" Form2.Show Form1.Hide End Sub -------------------------------------------------------------------------- That's …

Member Avatar for macbrutal
0
99