how to display the letter in continuous form using text edit
Solved
General and Desktop
-
This post is deleted!
-
This post is deleted!
-
@sankarapandiyan try this:
QString text = ui->lineedit->text(); text.append("7"); // or whatever you like ui->lineedit->setText(text);
Regards
-
This post is deleted!