Link to home
Start Free TrialLog in
Avatar of jrisi03
jrisi03

asked on

writing to a txt file from a text box

How do I take text from a textbox and write it to a txt file
Avatar of bobbit31
bobbit31
Flag of United States of America image

Dim ff as integer
ff = FreeFile
open "C:\my documents\outputfile.txt" For Output as #ff
Print #ff, text1.text
close(ff)
ASKER CERTIFIED SOLUTION
Avatar of supunr
supunr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial