davesmith202
Employee of Access World
- Local time
- Today, 11:42
- Joined
- Jul 20, 2001
- Messages
- 522
Just want to save the contents of a memo field to a new text file. My code is below. But something odd is happening. I get some data output but when I open it up in a spreadsheet, it shows masses of data in the first cell (A1) and then data slightly misaligned for the rest of the spreadsheet. Any ideas why that might be? What should I be doing?
Thanks,
Jon
Code:
Dim strFile As String
strFile = "C:\Documents and Settings\Dave Smith\Desktop\" & "MSN-CSV-Data-" & DefaultID & ".csv"
Open strFile For Output As #1
Write #1, MSNCSV
Close #1
Thanks,
Jon