The npi number (last field) was being truncated. I did a test and changed the npi ALLTRIM command to read ALLTRIM(SUBSTR(npi,1,9)) {one character shorter)} to see if the npi # would appear when I opened notepad.[/code]
If the line is too long just by one char, and some value in some field must have become on char wider, then instead of inspecting notepad, you should inspect your data field via browse and see if the last char of npi came through to the fln1 field. If it's already missing there, you of course can do what you want in notepad, and removing a space and repositioning columns by one char this way helps, but what about enlarging the field fln1 and make it one char larger? Or making it a memo? In a memo fln1 can be as wide as you like, and also notepad has no practial line width limitation.
If the char is NOT missing in fln1, if it's really just missing in notepad, make your font setting one point lower than in win98. Win7 uses new fonts, also Aero windows style means wider borders and so the notepad window is a few pixels narrower in the same screen size. But if it would be that, then there wouldn't have been a binary difference in the file. So most probably it's just all about ALLTRIM() and one field having got one char wider data in it.
Bye, Olaf.