Hi all,

How to display strings side by side using QLineEdit / QTextEdit, or is there any other way to display the strings one after the other in the same line.

If I use QTextEdit->append("Text1"); QTextEdit->append("Text2"); // Text2 prints in new line after Text1.
I want Text1 and Text2 should print in same line side by side.
Ex: Text1 <space> Text2 <space> ... etc

How can I do that?

Thanks & Regards,
Arun