Color of Breakpoint in VC++?
-
Hello everybody, I would like to know how to get the color of the breakpoint circle, which visual C++ uses, when the user presses F9 to set a breakpoint? Thanks,
Software Developer Sanjay Khapre
if you want change color from breakpoint see Tools->option->Enviroment->Fonts and Colors->Display items->Breakpoint*
_**
**_
WhiteSky
-
Hello everybody, I would like to know how to get the color of the breakpoint circle, which visual C++ uses, when the user presses F9 to set a breakpoint? Thanks,
Software Developer Sanjay Khapre
I don't think there's any function to get that, but it's RGB( 128, 0, 0) (at least for VC6).
- S 50 cups of coffee and you know it's on!
-
I don't think there's any function to get that, but it's RGB( 128, 0, 0) (at least for VC6).
- S 50 cups of coffee and you know it's on!
Steve Echols wrote:
but it's RGB( 128, 0, 0)
I found it to be RGB(132,0,0) in VS6.0 and VS .NET 2003
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Steve Echols wrote:
but it's RGB( 128, 0, 0)
I found it to be RGB(132,0,0) in VS6.0 and VS .NET 2003
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
Hmmm, apparently it's configurable, according to WhiteSky's post. I'm setting mine to a nice mix of Yellow #5 and Red #2, the same Kraft uses for their macaroni and cheese. :-D
- S 50 cups of coffee and you know it's on!
-
Hmmm, apparently it's configurable, according to WhiteSky's post. I'm setting mine to a nice mix of Yellow #5 and Red #2, the same Kraft uses for their macaroni and cheese. :-D
- S 50 cups of coffee and you know it's on!
I think its good 53,108,236 for breakpoint
_**
**_
WhiteSky