Quote Originally Posted by filmfreak
2) Be able to display multiple items at once, including integers. For example, I'd like to be able to display the word "In", followed by the value of an integer variable, followed by the word "Out", followed by the value of another integer variable.
Qt Code:
  1. statusBar()->message(QString("In: %1 | Out: %2").arg(inValue).arg(outValue));
To copy to clipboard, switch view to plain text mode