Qt Tutorials For Beginners 10 - Simple Login app using QT

  Рет қаралды 158,474

ProgrammingKnowledge

ProgrammingKnowledge

Күн бұрын

Пікірлер: 55
@ProgrammingKnowledge
@ProgrammingKnowledge 8 жыл бұрын
www.codebind.com/c-tutorial/qt-tutorial/qt-tutorials-beginners-creating-simple-login-form-qt/
@brookeblake3324
@brookeblake3324 6 жыл бұрын
if you encounter a problem saying "File not found: mainwindow.obj" after adding the second window, the try the solution as follows Right click on project > Clean Right click on project > Run qmake Right click on project > Build Run - worked first time Actually, in the previous lecture I have already met with this problem when adding the second window, the solution of which seems to be tricky, but anyway hope it works well for you.
@jonas89he
@jonas89he 6 жыл бұрын
Thx Bro!
@backend-Engineer555
@backend-Engineer555 5 жыл бұрын
Thank you. This really helpful
@piggybank380
@piggybank380 5 жыл бұрын
Thanks a lot!
@zoe4622
@zoe4622 5 жыл бұрын
Thanks this helped me!
@milkshakesnail8008
@milkshakesnail8008 4 жыл бұрын
I know people have already said this, but thanks a lot!
@francescaromelli4884
@francescaromelli4884 7 жыл бұрын
Hello! Congratulations to the course. It's really clear. I would like to include a custom message in the second window of the type "Hi user Mario" or "Hi user Ann". Can you help me please?
@user-ql7pw7ld1n
@user-ql7pw7ld1n 4 ай бұрын
Fantastic..love this a lot..very helpful and to the point
@Justajawnie
@Justajawnie 3 жыл бұрын
great course, got me up to speed very quickly.
@malbarenque
@malbarenque 5 жыл бұрын
property "echoMode=noEcho" in lineEdit_password for not see password typing ;). Thanks!
@muzaibranjha6259
@muzaibranjha6259 8 жыл бұрын
how to make log out button
@itachiuchiwa777
@itachiuchiwa777 4 жыл бұрын
good. please add some videos about theming and look and feel controls.
@bhupendersingh5557
@bhupendersingh5557 3 жыл бұрын
It says no member named "lineEdit" in UI::MainWindow. Please help
@martindvorecky6189
@martindvorecky6189 3 жыл бұрын
You must build *.ui after add any widget and before write method. Always.
@nikolakostadinov9830
@nikolakostadinov9830 3 жыл бұрын
@@martindvorecky6189 I knew the comment section will help, Thanks!!
@user-ww2lc1yo9c
@user-ww2lc1yo9c 9 ай бұрын
Does hide() mean that the window process is running in the background?
@valizeth4073
@valizeth4073 6 жыл бұрын
If u want to open a second window just add QWidget* window = nullptr; // In the mainwindow.h tab and write window = new QWidget; window->setWindowTitle("your window's title"); window->resize(your size in int); window->show(); //in the login function and write delete window; // in the class's destructor
@user-ww2lc1yo9c
@user-ww2lc1yo9c 9 ай бұрын
Why do we keep using the -> operator so much instead of using . operator? The . operator is used for things that mean member of, but we are just using the -> operator everywhere!
@xanthos733
@xanthos733 7 жыл бұрын
Worked fine thanks for the tutorial
@coding_vlsi_vietnam
@coding_vlsi_vietnam 5 жыл бұрын
THANKS FOR SHARING !!!!
@jonequest4262
@jonequest4262 7 жыл бұрын
Hey, nice tutorials! Very easy to follow. I'm using QT on Ubuntu. I noticed, for example, that for the Group Box it does not show the borders like it shows on Windows. Do you know if this behavior is due to the operating system?
@hugodebus7795
@hugodebus7795 7 ай бұрын
le sang de la veine
@NithyaselvanR
@NithyaselvanR 8 жыл бұрын
hi i am new to Qt, can you give an heads up on how to do this the other way around ? populate the value from a variable to the text box? TIA
@jonequest4262
@jonequest4262 7 жыл бұрын
You mean something like this? QString uname = "johns"; ui->uname->setText(uname);
@francescaromelli4884
@francescaromelli4884 7 жыл бұрын
I have got same problem. How do you resolve it?
@user-ww2lc1yo9c
@user-ww2lc1yo9c 9 ай бұрын
Is it possible to access Win32 functions from Qt application?
@priyanshunegi6404
@priyanshunegi6404 2 жыл бұрын
my cursor is not moving automatically to line edit . what should i do . Please suggest me
@zhonghanliu6433
@zhonghanliu6433 3 жыл бұрын
May I ask why it is SecDialog *secDialog not Ui::SecDialog *secDialog?
@tomaszbieniek3774
@tomaszbieniek3774 6 жыл бұрын
You should deallocate memory which you allocate by using a "new" operator otherwise it leads to memory leak.
@shashankmg
@shashankmg 5 жыл бұрын
I am getting 2 error as follows In file included from ../Login/main.cpp:1:0: Declaration of 'SecDialog* MainWindow::SecDialog'[-fpermissive] And one more of similar error.
@aryanmn1569
@aryanmn1569 5 жыл бұрын
Its best vid tut
@ibtihelhacheni8365
@ibtihelhacheni8365 6 жыл бұрын
how to make the username length ? is it username.size() like c++ ? pleaaase i want a response
@zakariachahboun
@zakariachahboun 7 жыл бұрын
thank you very much ♥ ..... plz get a POP filter to your mic XD
@davidlewisjr.8932
@davidlewisjr.8932 4 жыл бұрын
How could we pass a variable, say a Qstring, to that new window? For example: login the first window, then on the second window display "{username} is logged in" ?
@oblivionronin
@oblivionronin 3 жыл бұрын
If that second window is a class. Option 1 : make it a constructor argument (coudl be optional argument) that you pass it to when constructing. Option 2 : simply call a setText() function on that second window before calling show(). Option 3 : create a username member variable in that class and set it before doing show()
@amitjaiswalelect
@amitjaiswalelect 7 жыл бұрын
Excellent tutorial series.. I am getting an error "expected type-specifier before 'SecDialog'" for line "SecDialog = new SecDialog(this);".. What is going wrong?
@valizeth4073
@valizeth4073 6 жыл бұрын
Dont add a window that way, do it like this instead: QWidget* window = nullptr; // In the mainwindow.h tab and write window = new QWidget; window->setWindowTitle("your window's title"); window->resize(your size in int); window->show(); //in the login function and write delete window; // in the class's destructor
@oussamasethoum2755
@oussamasethoum2755 4 жыл бұрын
how ca i just change the UI of the main window ?
@LetTheWritersWrite
@LetTheWritersWrite 7 жыл бұрын
Wow, love the tutorials but the first 7 minutes did not need to be that long.
@just_exist_ezz
@just_exist_ezz Жыл бұрын
still after this much year this is still relevent.Any one knows how can I make password hidden?
@hamzaabbasi6418
@hamzaabbasi6418 6 жыл бұрын
and what if i want password to be in form of bullets
@KDnature
@KDnature 4 жыл бұрын
How to close sub window If close (); like this both window closed What comments we use
@andreeaionita6102
@andreeaionita6102 7 жыл бұрын
how can the password be hided? :D
@just_exist_ezz
@just_exist_ezz Жыл бұрын
did you find this tutorial?anywhere
@ammarberkovic4460
@ammarberkovic4460 4 жыл бұрын
for some reason. I can't access objects from .ui file. Any solutions?
@sharpiner107
@sharpiner107 4 жыл бұрын
I cant either have you figured out a fix?
Qt Tutorials For Beginners 11 - Displaying image using label in Qt
10:26
ProgrammingKnowledge
Рет қаралды 175 М.
Qt Tutorials For Beginners 9 - How to Show Another Window From MainWindow in QT
13:01
POV: Your kids ask to play the claw machine
00:20
Hungry FAM
Рет қаралды 14 МЛН
Остановили аттракцион из-за дочки!
00:42
Victoria Portfolio
Рет қаралды 2,8 МЛН
У ГОРДЕЯ ПОЖАР в ОФИСЕ!
01:01
Дима Гордей
Рет қаралды 8 МЛН
Шок. Никокадо Авокадо похудел на 110 кг
00:44
Qt Tutorials For Beginners 13 - Resource Collection Files (.qrc)
8:55
ProgrammingKnowledge
Рет қаралды 107 М.
To-Do App in Qt C++ - Qt Widgets Crash Course
30:53
Sciber
Рет қаралды 16 М.
you will never ask about pointers again after watching this video
8:03
Low Level Learning
Рет қаралды 2,2 МЛН
I run untested, viewer-submitted code on my 500-LED christmas tree.
45:17
Learning C# In A Week... Otherwise I Fail University
9:04
Qt for Beginners: Build a Login App with SQLite!
7:08
The Defeated Engineer
Рет қаралды 632
How to get started with Qt Creator  | C++ GUI  | Libraries | Qt Designer | Cross platform
14:57
Qt Tutorials For Beginners 4 - First Qt GUI widget Application
20:41
ProgrammingKnowledge
Рет қаралды 303 М.
POV: Your kids ask to play the claw machine
00:20
Hungry FAM
Рет қаралды 14 МЛН