Hi all,

I am populating a QTextEdit with text using;
Qt Code:
  1. ui->textEdit->append(QString);
To copy to clipboard, switch view to plain text mode 
The focus is always at the end of the string after execution, is there any way to set the focus to the start of the string or top of the QTextEdit?
I have tried
Qt Code:
  1. QTextEdit::scroll(0,0)
To copy to clipboard, switch view to plain text mode 
with no joy...

Any suggestions are appreciated!

Cheers,
Jon