Quote Originally Posted by mike phillips View Post
As I said at post #1, I can already read the file in a message box.
Yes, and I proposed improving your code by switching to QFile/QTextStream.

I need to be able to read it into a text file and am trying to get it to append to a textbox for starters. What I am looking for is some clues as to the code to follow from line #7 in my paste so I can slot it into the cpp.
So what is the problem? A text box in Qt terms would be QTextEdit. So replace "process_line(line);" with "textEdit->append(line);" where "textEdit" is a pointer to QTextEdit.