Hi,

I have tried to scroll my textbrowser .But i am not able to do .

Qt Code:
  1. QString currmsg = "The Koran. \nfdfjk .\nncdfjklgjf.\njdfkhjdfk";
  2.  
  3.  
  4. QTextCursor *temp = new QTextCursor(ui->textBrowser->textCursor());
  5. temp->insertText(currmsg);
  6.  
  7. temp->insertBlock();
  8. delete temp;
  9.  
  10.  
  11. ui->textBrowser->setStyleSheet("color:black");
To copy to clipboard, switch view to plain text mode 

Thanx