cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Set in Visual Studio a breakpoint, or el
Set in Visual Studio a breakpoint, or else, in order to intercept a click on button in dockable window
Mar 13, 2020 at 4:35am UTC
marhuum
(181)
How in Visual Studio can we set a breakpoint, or set up a hook, or do whatever else, to be able to intercept clicking on a button in dockable window being built in C++ upon win32 API, and then bring into its handler for debugging?
Last edited on
Mar 13, 2020 at 10:36am UTC
Mar 13, 2020 at 10:15am UTC
thmm
(703)
Buttons send either a WM_COMMAND or WM_NOTIFY message.
Set your breakpoint inside the code that handles the message.
Topic archived. No new replies allowed.