ok...ahah...ONE LAST THING!!
...ok se heres my code
code:
Private Sub Command1_Click()
Dim intMsg As String
Dim Message As String
Open "C:\Documents and Settings\!~DyLaN~!\Desktop\VB\sample.txt" For Output As #1
intMsg = MsgBox("File sample.txt opened")
Message = InputBox("Enter Message")
Print #1, vbNewLine; Message
intMsg = MsgBox("Writin " & StudentName & " to sample.txt ")
Close #1
End Sub
Private Sub Form_Load()
MsgBox "Hello"
End Sub
and i want to give that to people so they can send me messages but whenever someone writes a message it saves over the last one and i was wondering how i could get it to just keep adding on to sample.txt
here it is if u wanna send me a message