Click here to Skip to main content
15,890,043 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i am beginner in qt
i created a GUI application in qt creator and added a push button and a line edit into form by desginer. i want the size of (width and height) lineEdit change when i click push button
but when i write this code:
C++
void MainWindow::on_pushButton_clicked()
{
    lineEdit->setGeometry( 0, 0, 85, 30 );
}

it gives thiserror :
C:\Users\REZA\Documents\Qt\game4-build-desktop\..\game4\mainwindow.cpp:19: error: 'lineEdit' was not declared in this scope
Posted

1 solution

ui->lineEdit->setGeometry(10,10,80,30);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900