PDA

View Full Version : float display



freekill
13th May 2009, 07:32
I managed to display text via textEdit->append() and it's working nicely. However, now I would like to display float values from my variable. How do I do this? Thanks in advance.

zgulser
13th May 2009, 07:57
textEdit->append(QString::number(myFloatnumber));

freekill
13th May 2009, 12:43
thanks for that..it's working..