hi,

i have a text file called, hackingattempt.ooo first of all when the command button is clicked i need to kno if he file is there if it isn't i need to create it, once i have done this i want to apend this filw with the information from two labels and two textboxes, i have tried to use the following code to apend the file but it doesn't seem to work how can i inncorportae the information from the labels and text boxes into this file as well, and how do i check if he file excists ?

Code:
Open ("c:\hackingattempt.001") For Append As #1   
a.writeline ("There was a invalid entry at")
a.writeline Label3.Caption + Label4.Caption
a.writeline text1.text + text2.text
    Close #1
cheers to all that can help

Merlin ¿