I'm looking for the simplist and most efficent way to populate data into textboxes (about 40 of'em) from .txt files. The data is comma delimited and also uses carriage returns (vbcrlf). I was placing my data into an array and using "Open" and "Input" to read the file, but now I found out that I can't have trailing comma's. This messes up the entire order of my array and now places data in the wrong textboxes. Does anyone have any suggestions how I can get around this. I was thinking maybe using the "Instr" or "Split" function. Any suggstions or code examples will be appreciated...

thanks