| Thread | Last Post | Replies |
|
| Problem with CToolBar and Manifest | 19 Oct 2005 21:49 GMT | 1 |
I have noticed problems with the CToolBar class when using a manifest file in VC++ 2003. To test my theory I created an empty MFC MDI project with the manifest file so I get the WinXP style controls. When running the project I found the following, after-which, single-clicks on ...
|
| How to suppress linker warning lnk4204 | 19 Oct 2005 08:35 GMT | 4 |
I have a project which includes different libraries. When I compile the project, I get a huge amount of the following linker warnings: --- warning LNK4204: "C:\...\Debug\vc70.pdb' is missing debugging
|
| Transparency in .png files | 19 Oct 2005 06:31 GMT | 1 |
I wonder if you can make .png images more transparent when drawing them using GDI+? If it is possible, how can I do? I have tried the example at http://www.leunen.com/cbuilder/gdiplus.html, but the image disappears completely instead.
|
| System::Drawing::Graphics - how do I use in managed C++? | 18 Oct 2005 17:31 GMT | 4 |
There doesn't seem to be any documentation on how to create and/or use an instance of System::Drawing::Graphics. On-line MSDN talks about this class, and says: " The Graphics class provides methods for drawing objects to the display
|
| /Od compiler option problem | 18 Oct 2005 15:31 GMT | 3 |
I am running a project in eVC 4.0 and I have been running into a bug that only appears in the release build of the project. I eventually found out that when I had the compiler option /Od set the project would work properly but when it was not set the bug would appear.
|
| the ugly msvcr71d.dll and lnk4098 | 18 Oct 2005 14:52 GMT | 4 |
for those who followed my woes yesterday, http://www.dotnetmonster.com/Uwe/Forum.aspx/dotnet-vc/6571/why-do-i-have-msvcr71 -dll-and-msvcr71d-dll-in-my-release-build Now i ran one of the dependant lib files thru the /verbose option during a release build
|
| Does this compile for you? (causes internal compiler error on VC71) | 18 Oct 2005 12:01 GMT | 3 |
#ifndef MKT_DATA_QUOTE_CHAIN_Header_ #define MKT_DATA_QUOTE_CHAIN_Header_ //#include "Quote.h" class QuoteChain/*: public Quote*/ {
|
| How do I start a MANAGED C++.NET application in 2003 version? | 18 Oct 2005 02:36 GMT | 3 |
In the 2002 version of VS C++.NET if I wanted to create a new Managed C++ application I would got to "New Projects", then select "C++ Projects," then "Managed C++ Application". I recently upgraded to 2003, and there is no Managed C++ application option
|
| Bitmap transparent color not so transparent it seems | 18 Oct 2005 01:41 GMT | 7 |
Using MakeTransparent one can supposedly turn a color used in a Bitmap to transparent. But, it looks to me like all it does it set these pixels to the color BackColor of the Control it's attached to. Thus, when I set White to the transparent color of a Bitmap stored in the Image ...
|
| Re: Does this compile for you? (causes internal compiler error on | 18 Oct 2005 00:57 GMT | 1 |
I was still not able to reproduce the failure by copying the exact code you posted. Is there any other code being compiled here? -----Original Message----- From: E.T. Grey Posted At: Monday, October 17, 2005 10:19 AM
|
| why do i have msvcr71.dll and msvcr71d.dll in my release build | 17 Oct 2005 19:58 GMT | 3 |
My release dll build has both these versions. i obtained code from another developer who is on vacation. last week i could build final release build with only msvcr71.dll as a dependency. the other guy walked me thru but for some reason when i send the release build to QA, it looks ...
|
| Status bar output from within a thread | 17 Oct 2005 19:49 GMT | 5 |
VS.NET 2003 C++ MFC-SDI-Standard project. I would like to show some current info in the status bar of the SDI-Window. As long as I use the following code
|
| How do I copy the content of a string to a char array? | 17 Oct 2005 18:58 GMT | 15 |
How do I copy the content of a string in one encoding (in my case big5) to a char array (unmanaged) of the same encoding? I try the following String line[] = S"123水泥";
|
| recursion & object life | 17 Oct 2005 17:13 GMT | 1 |
Please read the code snippet below. What it is supposed to produce a chain: first_node(value = 0) --> next_node(value =5) --> next_node(value =10) --> next_node(value = 15) However, I fear that objects created in deep levels of recursions are
|
| HOWTO: Add methods to C++ UserControl. | 17 Oct 2005 15:12 GMT | 4 |
HOWTO: Add methods to C++ UserControl. Please help, I want to add a method to a C++ .NET UserControl that is based off the sample in the MSND article titled:
|