Can I save the contents of a listbox to a Word document (*.doc) ?
And if so, who can give me an example ?
s
Printable View
Can I save the contents of a listbox to a Word document (*.doc) ?
And if so, who can give me an example ?
s
Is this what you want?
Open "C:\MyFile.Doc" For Output As #1
For X = 0 To List1.ListCount - 1
Print #1, List1.List(X)
Next
Close #1