qtmaind.lib(qtmain_win.obj):-1: warning: LNK4099: PDB 'vc_ib_1.pdb' was not found with 'c:\QtSDK\Desktop\Qt\4.7.4\msvc2008\lib\qtmaind.lib' or at 'C:\Documents and Settings\Administrator\My Documents\qt\gui2-build-desktop-Qt_4_7_4_for_Desktop_-_MSVC2008__Qt_SDK__Debug\debug\vc_ib_1.pdb'; linking object as if no debug info
@7337cod3r The ui is not created prior to calling setupUi(this). What it does is basically creating all the widgets in the ui (slider and progress bars here) so that you can call and modify them later. Before this function call, non of the widgets exist yet and so you cannot call the connect function
01:05 You must not select anything to successfully apply a layout to a toplevel widget! In fact, your layout does not make the widgets expand to fill the available space like they should, but you must resize the layout manually
03:22 Q_OBJECT macro has nothing to do with the fact you can use the connect method (it doesn’t “provide” it or so), and connect is not a macro but a method of the QObject class
This has been flagged as spam show
useful, and well presented. Everything is clean as a whistle :-) thank you.
greniocracy 1 week ago
Comment removed
greniocracy 1 week ago
Love this tutorial. Thanks!!
ishu161 2 months ago
1 person was piped to /dev/null.
KAHNonymousjohn 2 months ago in playlist C++ Qt Tutorial
somehow when i press ctrl+space the horizontal slider and setvalue int thing won't appear in that box, any solution for this please?
RiftStuff 2 months ago
The receiver bar is a slut ;)
comvnche 4 months ago 4
Comment removed
comvnche 4 months ago
Thank You :)
yanike 4 months ago
My program is compiling and running fine, but I keep getting link errors. here is the error output:
-------------------------------------------------------------------
qtmaind.lib(qtmain_win.obj):-1: warning: LNK4099: PDB 'vc_ib_1.pdb' was not found with 'c:\QtSDK\Desktop\Qt\4.7.4\msvc2008\lib\qtmaind.lib' or at 'C:\Documents and Settings\Administrator\My Documents\qt\gui2-build-desktop-Qt_4_7_4_for_Desktop_-_MSVC2008__Qt_SDK__Debug\debug\vc_ib_1.pdb'; linking object as if no debug info
-------
joniii247 4 months ago
@joniii247 any update on this? i'm having same issue. thanks.
paulanon 4 months ago
Thanks for the tutorial, 10/10!
cubiq1 5 months ago
its very good and better than troll
biddut 5 months ago
People like the author of this tutorial make the internet and the world a better place :)
LordOfer 5 months ago 11
i keep getting the error message that the pushbutton is not in the library with i try coding please help
LaTaye2 5 months ago
Nice to hear your voice. Your english is pretty good for understanding by the noob in programming, speaking russian :)
twilihgtn 6 months ago
THANKS BRO FOR YOUR TIME...NICE TUTO...
TEUFELEFUET 6 months ago
i tried to disconnect progressBar if(ui->progressBar->value() >= 50) but it didn't work... how do i have to change my code to make it work
CanMartin 6 months ago
fix your cursor!!!!!
SaintBelmont 7 months ago
yo good tutorial!!!
TheSloppypapi 7 months ago
ui->setupUi(this);
//if you write the connect above this statement the programm wont execute why is that
while if you write the connect (..); below the above code it works fine ....I mean why is that the order matters.
7337cod3r 8 months ago
@7337cod3r The ui is not created prior to calling setupUi(this). What it does is basically creating all the widgets in the ui (slider and progress bars here) so that you can call and modify them later. Before this function call, non of the widgets exist yet and so you cannot call the connect function
!
smmirzadeh 8 months ago
Thanks for the tutorial!
ACBoredz 9 months ago
very nice video and powerful IDE ... thanks dear ...
RealSourceryd 10 months ago
thx
b00n90 11 months ago
signal >>>>>>>>>>>>>> slot
hammadghulam 11 months ago
Errata (from offical Qt forums):
01:05 You must not select anything to successfully apply a layout to a toplevel widget! In fact, your layout does not make the widgets expand to fill the available space like they should, but you must resize the layout manually
03:22 Q_OBJECT macro has nothing to do with the fact you can use the connect method (it doesn’t “provide” it or so), and connect is not a macro but a method of the QObject class
VoidRealms 1 year ago