I have a string. It has about 80000 line.I try to write
QTextDocument * textDocument=new QTextDocument();
textDocument->setHtml(list); //list is my string
txtEdit->setDocument(textDocument);
if string is not contain 80000 line, it can show records.But if has 80000 line, it can not show anything.
Do you have any solution about this problem? Thanks a lot.