I have been writing information out from my VB6 application to text files, but I have a request to send them to Excel. The problem I having is that the three columns all go to column A in Excel.
Is there anyway to break up the three columns so that they go to columns A, B, C respectively?
Here is my code:
Open "CDNotRegNot_V_Or_P.txt" For Append As #intFileNum
Print #intFileNum, RSMaxTest!Issn; "|"; _
RSMaxTest!dispatch_date; "|"; _
RSMaxTest!dispatch_flag
Close #intFileNum
Is there anyway to break up the three columns so that they go to columns A, B, C respectively?
Here is my code:
Open "CDNotRegNot_V_Or_P.txt" For Append As #intFileNum
Print #intFileNum, RSMaxTest!Issn; "|"; _
RSMaxTest!dispatch_date; "|"; _
RSMaxTest!dispatch_flag
Close #intFileNum