Okay, I have my "updated" VB6 app working. Next step is to export certian fields into a CSV so they can be imported into an Access database.

Background -
The VB app hashes a text file something like this... The file is fixed width, and 3 or 4 characters on the right side get read.

EXAMPLE
Select Case cc
Case "DA" To "DD"
NoSupport$ = "yes"
skipcnt2% = skipcnt2% + 1
Case "XA" To "XJ"
NoSupport$ = "yes"
skipcnt2% = skipcnt2% + 1
Nsnap.SF43 = "Card Type not supported " & cctext
Nsnap.Narr = RTrim(Nsnap.Narr) & "[" & Mid(textdata, 18, 63) & "]" &CRLF$ & " "
Case "YX" To "YZ"
NoSupport$ = "yes"
skipcnt2% = skipcnt2% + 1
Nsnap.SF43 = "Card Type not supported " & cctext
Nsnap.Narr = RTrim(Nsnap.Narr) & "[" & Mid(textdata, 18, 63) & "]" & CRLF$

This then gets hacked down into seperate fields displayed on a form based on number of characters and position in the line(I believe)

EXAMPLE
SF1 As String * 4 ' 2 Work Center
SF2 As String * 4 ' 3 Job Seq No
SF3 As String * 11 ' 4 APL / AEL
SF4 As String * 19 ' 5 Equip Noun Name
SF5 As String * 1 ' 6 WND - When Discovered Date
SF6 As String * 1 ' 7 STA - Status

Any suggestions as the best way to extract specific fieldsfrom specific records(as they are displayed) to add to a CSV formatted file?

John