Click here to Skip to main content
15,899,314 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: too many dialogs to manage... Pin
l a u r e n25-Dec-00 22:03
l a u r e n25-Dec-00 22:03 
GeneralMonitoring memory usage system-wide Pin
24-Dec-00 13:38
suss24-Dec-00 13:38 
GeneralCView Drop Targets Pin
Greg Hedlund24-Dec-00 4:37
Greg Hedlund24-Dec-00 4:37 
GeneralRe: CView Drop Targets Pin
Michael Dunn24-Dec-00 6:40
sitebuilderMichael Dunn24-Dec-00 6:40 
GeneralTroubled with "User BreakPoint at 0x......" debugging my VC++ Project Pin
23-Dec-00 10:06
suss23-Dec-00 10:06 
GeneralRe: Troubled with Pin
Tim Deveaux23-Dec-00 15:05
Tim Deveaux23-Dec-00 15:05 
GeneralRe: Troubled with Pin
l a u r e n23-Dec-00 20:55
l a u r e n23-Dec-00 20:55 
GeneralRe: Troubled with Pin
Julien26-Dec-00 11:00
Julien26-Dec-00 11:00 
Hi Sean,

When writing code in VC++ you can manually insert DebugBreak()'s. This can be very useful at times for unexpected situations like MessageBox("Should not get here Smile | :) ") and other crap things.
However it sounds like you have one of these being included somewhere in your code. The most likely case is a debug library, if you are using supplied libraries and are including the debug version you should also include the .pdb and the source code. If you don't have these then either the DebugBreak was left in by accident and you should just use the Release version. There is a chance that it was put there on purpose so just to be sure you should bring up the CallStack window and look back to where your code ends (and the assembly starts) and verify your parameters.

If you don't have a Release build and can not arrange to get one then you can attempt to hack the binary. This is a LAST RESORT. You can open the lib in VS however you are going to have to locate the DebugBreak and replace those instructions with noops. But make sure you COPY the lib first!!

The other possible location is in included code. Sometimes VS needs to have the code added to the project before it automatically goes there. If you can navigate down your include tree and add all these things then you might get taken to the line of code. Then you can either fix the problem (what ever it is) or comment out the DebugBreak() and making a note to restore it later!

Jules
GeneralRe: Troubled with Pin
27-Dec-00 10:34
suss27-Dec-00 10:34 
GeneralMemory as displayed in NT/2k TaskManager Pin
Darren Schroeder23-Dec-00 6:55
Darren Schroeder23-Dec-00 6:55 
GeneralRe: Memory as displayed in NT/2k TaskManager Pin
l a u r e n23-Dec-00 21:02
l a u r e n23-Dec-00 21:02 
GeneralRe: Memory as displayed in NT/2k TaskManager Pin
Darren Schroeder24-Dec-00 3:25
Darren Schroeder24-Dec-00 3:25 
GeneralRe: Memory as displayed in NT/2k TaskManager Pin
Erik Funkenbusch26-Dec-00 8:28
Erik Funkenbusch26-Dec-00 8:28 
GeneralRe: Memory as displayed in NT/2k TaskManager Pin
Erik Funkenbusch26-Dec-00 9:00
Erik Funkenbusch26-Dec-00 9:00 
GeneralProperties Sheet Pin
23-Dec-00 4:48
suss23-Dec-00 4:48 
GeneralRe: Properties Sheet Pin
23-Dec-00 23:57
suss23-Dec-00 23:57 
GeneralDialog Pin
22-Dec-00 14:14
suss22-Dec-00 14:14 
GeneralRe: Dialog Pin
22-Dec-00 15:38
suss22-Dec-00 15:38 
GeneralImage Overlay Pin
22-Dec-00 11:42
suss22-Dec-00 11:42 
GeneralRe: Image Overlay Pin
l a u r e n23-Dec-00 21:08
l a u r e n23-Dec-00 21:08 
GeneralChanging a MDI Child Window Icon Pin
22-Dec-00 8:21
suss22-Dec-00 8:21 
QuestionEasy way to create a popup menu with the Grid Control? Pin
Jason Douglas22-Dec-00 3:00
professionalJason Douglas22-Dec-00 3:00 
GeneralInternet Protocols Pin
Alpesh22-Dec-00 2:12
Alpesh22-Dec-00 2:12 
QuestionHow can i get current domain name? Pin
22-Dec-00 0:44
suss22-Dec-00 0:44 
GeneralCListCtrl with full row selection Pin
22-Dec-00 0:36
suss22-Dec-00 0:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.