no i wouldnt be using an illegal version
....anyways ive done a couple little things already...calculators and stuff but im stuck...i need to take text from a .txt file and put it into a msgbox
code:
Private Sub Command2_Click()
Open "C:\Program Files\Multi-app\password.txt" For Output As #1
Pass = "C:\Program Files\Multi-app\password.txt"
MsgBox (#1 & " is your Password.")
Close #1
End Sub
BUT....theres an error on the "MsgBox (#1 & " is your Password.")" line with the #1 and i was wondering what i could do to fix that