Hi,

I am using a Qtextbrowser to log/display messages from a device in my application. I used the append (QString &text) [slot] to add my messages to my logger. I noticed that that my app wont last 24 hours it will just crush I am suspecting that Qtextbrowser is just using up all memory my PC can afford.

I want to run my apps for months, how can i control Qtextbrowser from eating up all my memory? or What is the better solution to my objective, to show messages to my user that will run for months.

baray98