P Paul Apr 29, 2004 #1 How can I send the content of a memo data type to a text file using vb. Thanks
D Dirk Goldgar Apr 29, 2004 #2 Paul said: How can I send the content of a memo data type to a text file using vb. Thanks Click to expand... From a form in which the memo field is represented by a text box, you could do something like this simplified code: Private Sub cmdSave_Click() Open "C:\Temp\OutputFile.txt" For Output As #1 Print #1, Me.txtFileData.Value; Close #1 End Sub Is that the sort of thing you were looking for?
Paul said: How can I send the content of a memo data type to a text file using vb. Thanks Click to expand... From a form in which the memo field is represented by a text box, you could do something like this simplified code: Private Sub cmdSave_Click() Open "C:\Temp\OutputFile.txt" For Output As #1 Print #1, Me.txtFileData.Value; Close #1 End Sub Is that the sort of thing you were looking for?