
01-22-2004, 12:44 PM
|
|
Newcomer
|
|
Join Date: Jan 2004
Posts: 20
|
|
|
This creates a txt file that stores a password. Then do a loop that checks to see that if once the password inputted is equal to the one made then they can procede.
Dim intPlassword As Integer
Dim strPassword As String
strPassword = userpassword
intPlaylist = FreeFile
Open "C:\Password.txt" For Output As #intPassword
Print #intPlaylist, strPassword
Close #intPlaylist
|
|