Please help...I'm new to VB. I'm reading a text file that contains a variable sized string. When I try to print this string it gets truncated at the end of the page. Is there a simple way to continue the string on the next line? I've tried using the Mid function, but it didn't work very well.
Dim stra As String 'first string in file
Dim strb As String 'second string in file
Dim strA1 As String
Dim strA2 As String
Dim strA3 As String
Dim strA4 As String
Dim strB1 As String
Dim strB2 As String
Dim strB3 As String
Dim strB4 As String
strA1 = Mid$(stra, 1, 100)
strA2 = Mid$(stra, 101, 100)
strA3 = Mid$(stra, 201, 100)
strA4 = Mid$(stra, 301, 100)
strB1 = Mid$(strb, 1, 100)
strB2 = Mid$(strb, 101, 100)
strB3 = Mid$(strb, 201, 100)
strB4 = Mid$(strb, 301, 100)

Printer.Print Tab(5); strA1
Printer.Print Tab(5); strA2
Printer.Print Tab(5); strA3
Printer.Print Tab(5); strA4
Printer.Print Tab(5); strB1
Printer.Print Tab(5); strB2
Printer.Print Tab(5); strB3
Printer.Print Tab(5); strB4

This is done as I loop thru the file, but all I get are blank output lines.

I'd appreciate any help (please remember that this is a new language for me).