VC Debug trouble
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi all. Why my Visual Studio dont want to inter into source code of MFC by F11 key,alfought formerly all be fine.May bee i change some setting by chance or my VC break down??? Thanks.
-
Hi all. Why my Visual Studio dont want to inter into source code of MFC by F11 key,alfought formerly all be fine.May bee i change some setting by chance or my VC break down??? Thanks.
it generally happens when you pass the function call as a parameter to some other function. for instance outer_func(inner_func()); when the control reaches on this line and you press F11 the control enters the source code for inner_func(), but if inner_func() doesn't return a correct value then the control won't enter the source code for outer_func(). never say die