First my code:
Now my problem. When I use this to write to a file the whole string is written with " " around it. I tried Variant, but if a string is passed it still does the quotes. How can I get it to write a string without the quotes? Note right now the function doesn't return anything. That is for later.
Code:
Function WriteFile(FileName As String, FileData As String) As Boolean
Open FileName For Output Access Write As #1
Write #1, FileData
Close #1
End Function
Now my problem. When I use this to write to a file the whole string is written with " " around it. I tried Variant, but if a string is passed it still does the quotes. How can I get it to write a string without the quotes? Note right now the function doesn't return anything. That is for later.