The text file will receive accounting records for a third party accounting
package. Each record set contains 2 or more transactions. The third party
package requires a double carriage return to signify the end of each record
set.
Any suggestions how this can be done automatically using VBA.
I was going to use the Connect property method to export but have no idea
how a double carriage return could be generated
I would be grateful for any advice
Ralph
Dennis - 13 Jul 2005 11:44 GMT
Not sure exactly what you are after but this VBA
strTemp = "Hello" & vbCrLf & vbCrLf & "World"
msgbox strTemp will give
Hello
World
> The text file will receive accounting records for a third party accounting
> package. Each record set contains 2 or more transactions. The third party
[quoted text clipped - 5 lines]
> I would be grateful for any advice
> Ralph