Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi,
I'm a begginer in Qt and I wanna know how save the text of the QlineEdit in a variable. For example, I write a numbre inside the QlineEdit and then the number save in a variable.
thanks.
QLineEdit::text()
i.e. @ QLineEdit e; QStrint s;
.....
s = e.text();
@