| Thread | Last Post | Replies |
|
| /clr option | 04 Jul 2004 22:17 GMT | 2 |
I am starting to follow a book which is saying to use common language runtime (clr). So I defined a class I created as __gc type and also I included <mscorlib.dll>
|
| Common Control Issue -- Tree View Items of Varying Size | 03 Jul 2004 16:19 GMT | 1 |
It seems that when I dynamically resize items in a tree-view control, using TVM_SETITEM and the TVITEMEX iIntegral member, things go awry. The window draws properly, but it seems like the RECTs for the HTREEITEMs are not updating properly. This is espeically true if I update ...
|
| Covariant returns | 02 Jul 2004 19:28 GMT | 6 |
When implementing .net interfaces in vc++.net, is there anyway to get around the "error C2392: : covariant returns types are not supported in managed types" error? I know how to do this in c#. Is it possible in c++.net 2003? If so, please
|
| vc++ 6.0 or vc++ .net 2003? | 02 Jul 2004 18:43 GMT | 1 |
After taking 2 semesters of C++ at school, I've decided to get a compiler for my personal use when not at school, and one that can do Windows programming. I've pretty much come down to either vc++ .net 2003 standard or vc++ 6.0 pro. Basically, my main reservations about .net ...
|
| newbie for C | 02 Jul 2004 15:51 GMT | 1 |
Having problem on using the -> operator in C. aFile.C struct _process* initProcess(void){ struct _process* tmpProcess;
|
| Can't change the MAINFRAME icon! | 02 Jul 2004 15:04 GMT | 2 |
I have edited the IDR_MAINFRAME icon in VS .NET 2003. I compile it but while running the program, its still the same default icon! How can I change this? I did the same in VC++ 6.0 without any problem. BR /// Rob
|
| 7.1 ICE | 02 Jul 2004 14:15 GMT | 1 |
incorrect, but should not be an ICE: template <typename T> class XT {}; typedef XT<int> X;
|
| we need this ability !!! | 02 Jul 2004 13:43 GMT | 1 |
My English is poor, so there are many syntax error, i am sorry. In the past time ,we write code that can be reuse. But OOP only let us reuse the framework and the design mode. So, now, we write GP code with template, but today, we found GP also can not satisfy us.
|
| Resource in a dll | 02 Jul 2004 10:13 GMT | 10 |
I have an application that works fine when compiled as an executable. But it is designed to be a plugin also at the same time, by compiling it as a dll. I have a problem with resources when compiled as DLL. The error always says there is no resource file named
|
| Change picture box content | 02 Jul 2004 08:55 GMT | 1 |
I have a dialog, which have a picture box with an icon file inside, in my program. I want to change this icon dynamically with code. Does anyone knows how I can do it? Thanks
|
| CRITICAL:: DLLs from previous version of the compiler falis to redirect stderr:issue with CRT?? | 02 Jul 2004 04:42 GMT | 7 |
I discovered following issue with the VC 7.1 compiler regarding the backword compatibility. I created a dll (Redirect.dll) which exposes a function and simply writes some text (say "Hello World") to stderr stream. I also created a
|
| Minimal rebuilds | 02 Jul 2004 00:16 GMT | 5 |
We've got two developers working on the same mixed C++ project, using .SLN and .CPROJ project file (i.e. with identical configurations) on two different VS .NET 2003. The project files are in CVS. On one machine if you don't change anything between builds, the compiler recognises ...
|
| Visual C++ 7.1 Internal Compiler Error | 01 Jul 2004 22:49 GMT | 2 |
During the last weeks I've trying to port boost::python 1.23 to work with Visual C++ 7.1. I had some headaches while doing so because VC++ 7.1 supports Koenig lookup and previous ones doesn't support it (and aparently boost::python 1.23 was not written with Koenig support in
|
| How to use VS2003 designer to design a form in a nested namespace | 01 Jul 2004 20:48 GMT | 1 |
I'm trying to design a form with the help of the VS2003 C++ Forms designer. This works pretty good as long as the form is not included in a nested namespace. Example (works)
|
| _beginthreadex VS CreateThread in vc 7.1 | 01 Jul 2004 13:09 GMT | 5 |
Threads created using the CreateThread API used to leak memory if you accesed any crt methods within the thread proc. we used to use _beginthread to work around this issue. Does anyone know if this has been fixed ?
|