How to use Debugger in qt creator ??
-
[Solved]
Hello,How do I step through a function, the debugger seems to run through my code when I use F11 (Step into).
Thanks much.
-
You can either use Visual studio or QtCreator as the IDE. Visual Studio has a very good compiler\debugger in it.
QtCreator comes with MingW and it provides debugging option too.
You can just use keys like F9-> breakpoint, F5->start debugging, F10 for tracing line by line. -
Ah ha, f10...thanks
-
You welcome...