473,396 Members | 1,849 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Is there some way to tell the debugger not to stop at WndProc?

when I'm debugging (single stepping) I keep getting to WndProc which I do
not want to step through.

Is there some way to tell the debugger not to stop at WndProc?

Thanks
Dec 5 '06 #1
7 1602
Put this above the WndProc Function
<DebuggerStepThrough()_
" Franky" <fr***********@a-znet.comwrote in message
news:uc**************@TK2MSFTNGP04.phx.gbl...
when I'm debugging (single stepping) I keep getting to WndProc which I do
not want to step through.

Is there some way to tell the debugger not to stop at WndProc?

Thanks


Dec 5 '06 #2
Thanks just what I need

In the debugger I know about F5, F10 and F11

I've been looking in Help - I don't know where they are documented.

What I'm looking for is a F key that would move me through a routine once
I'm in it. Is there one?

Thanks again


"Mudhead" <no*****@yourhouse.comwrote in message
news:OV**************@TK2MSFTNGP05.phx.gbl...
Put this above the WndProc Function
<DebuggerStepThrough()_
" Franky" <fr***********@a-znet.comwrote in message
news:uc**************@TK2MSFTNGP04.phx.gbl...
>when I'm debugging (single stepping) I keep getting to WndProc which I do
not want to step through.

Is there some way to tell the debugger not to stop at WndProc?

Thanks



Dec 5 '06 #3
Ctrl-Shift-F8 (Step out).
" Franky" <fr***********@a-znet.comwrote in message
news:OM**************@TK2MSFTNGP04.phx.gbl...
Thanks just what I need

In the debugger I know about F5, F10 and F11

I've been looking in Help - I don't know where they are documented.

What I'm looking for is a F key that would move me through a routine once
I'm in it. Is there one?

Thanks again


"Mudhead" <no*****@yourhouse.comwrote in message
news:OV**************@TK2MSFTNGP05.phx.gbl...
>Put this above the WndProc Function
<DebuggerStepThrough()_
" Franky" <fr***********@a-znet.comwrote in message
news:uc**************@TK2MSFTNGP04.phx.gbl...
>>when I'm debugging (single stepping) I keep getting to WndProc which I
do not want to step through.

Is there some way to tell the debugger not to stop at WndProc?

Thanks




Dec 5 '06 #4
After I posted that I keep looking and thought I found on the internet that
shift-F11 did that.
I'll now have to find out what is different about shift-F11 and
Ctrl-Shift-F8

Thanks
"Robinson" <ro**************@hotmail.remove.this.co.ukwrote in message
news:el*******************@news.demon.co.uk...
Ctrl-Shift-F8 (Step out).
" Franky" <fr***********@a-znet.comwrote in message
news:OM**************@TK2MSFTNGP04.phx.gbl...
>Thanks just what I need

In the debugger I know about F5, F10 and F11

I've been looking in Help - I don't know where they are documented.

What I'm looking for is a F key that would move me through a routine once
I'm in it. Is there one?

Thanks again


"Mudhead" <no*****@yourhouse.comwrote in message
news:OV**************@TK2MSFTNGP05.phx.gbl...
>>Put this above the WndProc Function
<DebuggerStepThrough()_
" Franky" <fr***********@a-znet.comwrote in message
news:uc**************@TK2MSFTNGP04.phx.gbl...
when I'm debugging (single stepping) I keep getting to WndProc which I
do not want to step through.

Is there some way to tell the debugger not to stop at WndProc?

Thanks




Dec 5 '06 #5
I found a site that listed keys for VS (including F11) and keys for VB
(including F8)


" Franky" <fr***********@a-znet.comwrote in message
news:uI**************@TK2MSFTNGP03.phx.gbl...
After I posted that I keep looking and thought I found on the internet
that shift-F11 did that.
I'll now have to find out what is different about shift-F11 and
Ctrl-Shift-F8

Thanks
"Robinson" <ro**************@hotmail.remove.this.co.ukwrote in message
news:el*******************@news.demon.co.uk...
>Ctrl-Shift-F8 (Step out).
" Franky" <fr***********@a-znet.comwrote in message
news:OM**************@TK2MSFTNGP04.phx.gbl...
>>Thanks just what I need

In the debugger I know about F5, F10 and F11

I've been looking in Help - I don't know where they are documented.

What I'm looking for is a F key that would move me through a routine
once I'm in it. Is there one?

Thanks again


"Mudhead" <no*****@yourhouse.comwrote in message
news:OV**************@TK2MSFTNGP05.phx.gbl...
Put this above the WndProc Function
<DebuggerStepThrough()_
" Franky" <fr***********@a-znet.comwrote in message
news:uc**************@TK2MSFTNGP04.phx.gbl...
when I'm debugging (single stepping) I keep getting to WndProc which I
do not want to step through.
>
>
>
Is there some way to tell the debugger not to stop at WndProc?
>
>
>
Thanks
>
>




Dec 5 '06 #6

Franky wrote:
After I posted that I keep looking and thought I found on the internet that
shift-F11 did that.
I'll now have to find out what is different about shift-F11 and
Ctrl-Shift-F8
I think the difference is how you have your editor set up.
Ctrl-Shift-F8 is the control scheme use by VB6 and carried over into
VB.Net. Whereas the Shift-F11 is probably a carry over from Visual C.
In the settings you can set up your profile as a VB developer or C#
developer and that affects the default key mappings. Of course, you
can change any command to any keystroke combo you want.

Chris

Dec 5 '06 #7
That explains it. Some of the options are VB6, C#2005 and (Default)

I'm using (Default) and use F5, F10, F11 and now Shift-F11.

I don't remember what I used for VB6 but I do remember having to adapt after
moving to VS2003 so it was probably not F10 and F11.

Thanks

and thanks Robinson

"Chris Dunaway" <du******@gmail.comwrote in message
news:11**********************@80g2000cwy.googlegro ups.com...
>
Franky wrote:
>After I posted that I keep looking and thought I found on the internet
that
shift-F11 did that.
I'll now have to find out what is different about shift-F11 and
Ctrl-Shift-F8

I think the difference is how you have your editor set up.
Ctrl-Shift-F8 is the control scheme use by VB6 and carried over into
VB.Net. Whereas the Shift-F11 is probably a carry over from Visual C.
In the settings you can set up your profile as a VB developer or C#
developer and that affects the default key mappings. Of course, you
can change any command to any keystroke combo you want.

Chris

Dec 5 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: jonathan | last post by:
everyone, I'd like to be able to debug php scripts on the command line, going through the browser. In other words, set up the debugger to listen and then type in a url and have the code stop...
0
by: Katie M | last post by:
Hi, I'm running into a problem where the Microsoft Script Debugger is no longer starting up when it encounters an error or breakpoint. It used to prompt whenever it encountered an error, but is...
2
by: Frosty Madness | last post by:
Does anyone know if it's possible to set a policy in Windows to stop developers from accessing the debugger? Frosty
18
by: jrhoads23 | last post by:
Hello, I am trying to find a way to tell if an .NET windows forms Button (System.Windows.Forms.Button) is "depressed" (pushed down). For my application, I can not use a check box control set to...
1
by: redneon | last post by:
Is it possible to stop the menu from appearing when you click the icon on a Window's title bar? I'm wanting to use it as a button for a different purpose. I've tried capturing all the messages that...
1
by: moondaddy | last post by:
I tried to add the exception management block to my asp.net 1.1 application today and was getting some errors with it the application, so I removed it. When I re-loaded the app I got an error about...
2
by: jcrouse | last post by:
I have been beating this around for 6 or 8 hours now. I swear it used to work but I've changed quite a few things. I tried to revert to an earlier version but it does the same thing now. When I run...
4
by: D. Yates | last post by:
Hi, When a RichTextBox control doesn't have focus, it DOES NOT scroll to the last line that is added; however, if it does have focus, it WILL scroll to the last line added. I want to stop and...
5
by: Jon Davis | last post by:
I'm hosting a .NET console application in a .NET Windows Service using System.Diagnostics.Process. How do I block the debugger dialogue from appearing? Thanks, Jon
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.