Hi all,

I currently save files from within VB like so:

Code:
Dim ABC as String
Dim FF as integer

FF = FreeFile()

ABC = "XYZ Any string here"

Open "C:\SavedFile.txt" for Output as #FF
Write #FF, ABC
Close #FF
This is fine, but it saves the strings with "" marks at tne beginning and end of the string. For example, in our sample file for this code, the text in the file would be:

"XYZ Any string here"

This is fine usually but I need to load the values without " marks. I know I can remove them during input, but I seem to remember that you can avoid that by using a different work wather than write to output the file. I tried print but it left massive gaps between the values (in the text file).

Any headsup on the word/method that I need to write the file without it having " marks? I've got a feeling I figured this out before, and it was just a simple word, but I can't find the code.

Thanks,
Arby.