This is a total simple question I think, but:
How do I display a string and a integer in a single label? I tried it to make it like this:
int version = 1;
ui->label_3->setText("Version", version);
or this:
int version = 1;
ui->label_3->setText("Version" & version);
..or this:
int version = 1;
ui->label_3->setText("Version" + version);
Nothing seems to work..
↧