| Thread | Last Post | Replies |
|
| Using MFC classes in non-mfc .net application | 29 Mar 2006 09:37 GMT | 1 |
I am including a class into my mixed managed/unmanaged C++ application that uses MFC classes such as CSTRING. #include <afx.h> // have to include this in order to compile #include "CSharedMemory.h"
|
| VC++ FAQ moved | 29 Mar 2006 04:16 GMT | 1 |
With the help of Karl Petterson, we've moved tonight the old MVP VC++ FAQ (http://www.mvps.org/vcfaq/) over to the new MVPS.ORG server. The new address is http://vcfaq.mvps.org/ but redirects are in place so existing links will keep working, so no need to worry about that.
|
| Does Visual Studio 2005 work with Source Safe 6.0 | 28 Mar 2006 18:45 GMT | 1 |
Does Visual Studio 2005 work with Source Safe 6.0? Thanks. Wanjun
|
| Code Generation and VC++ 8... | 28 Mar 2006 17:37 GMT | 7 |
Recently I tried to use -G5 option on CL compiler (from Visual Studio 2005)... To my surprise, there is no processor specific optimizations anymore! Is that correct? Is so, why?
|
| [C++/CLI] Callback from unmanaged to managed | 28 Mar 2006 13:33 GMT | 3 |
I did spend quite a long time finding how to call managed code from unmanaged C++ class. Here is the my final code: http://xtware.com/mcallback/mcallback.htm
|
| CXX0030 error:expression cannot be valuated | 28 Mar 2006 05:00 GMT | 2 |
In visual studio 2005 I have built a simple win32 console programm.the code as follows: #include "stdafx.h" #include <windows.h>
|
| can't display multi-arrays variable in watch window! | 28 Mar 2006 02:54 GMT | 6 |
look my simple code below(vc8): double ends[2][3]; ends[0][2]=8.3; when i debug it, the variable ends[0][2] cannot be displayed in the
|
| GDI+ in VC6 | 27 Mar 2006 21:37 GMT | 3 |
Can some one tell me from where can I download the GDI+ SDK to use with VC6. Thanks, -Asfar
|
| How to define a global COM object in VC++8 | 27 Mar 2006 16:04 GMT | 4 |
I need define a global COM object in a VC++8 project. But when I compile it, I get a error message: error C3145:'ComLibC1': global or static variable may not have managed type MYCOMLib::Class1^ (MYCOMLib is a COM Wrapper built in VC++6).
|
| MC++... unable to compile my code correctly :-( | 27 Mar 2006 14:40 GMT | 5 |
I m new to MC++ and interoperability and I try to find a bug since a long time without succes, maybe you can help me ? (I have a sample project if you want, you can contact me at cdemez2@hotmail.com too)
|
| VC++.NET 2003, Managed/Unmanaged code | 27 Mar 2006 14:09 GMT | 1 |
I'm trying to create an unmanaged instance within a managed object. In the one module, I've constructed an unmanaged class that makes a lot of API calls. It compiles with no errors. In the other module, when an instance of the unmanaged class is created, a Link error is ...
|
| 0xC0000005: Access violation reading location 0x513112f4 | 27 Mar 2006 12:27 GMT | 2 |
Can someone help me out how can I resolve the error "0xC0000005: Access violation reading location 0x513112f4"? Steps I followed... 1. I ran the application at DOS prompt
|
| Can not reuse mixed-mode functions in VC++ | 26 Mar 2006 04:40 GMT | 8 |
By reuse, I mean a function in an assembly which is called in another assembly. By a mixed-mode function I mean a function whose signature has one or more CLR types and one or more non-CLR types.
|
| replace a VC function or a definition from a header | 25 Mar 2006 23:32 GMT | 2 |
Is it possible to redirect the linker & compiler to use a similar function without getting complaints about 'function x already in blah.obj'? Of course, I'm not talking about a runtime hook but about compilation time.
|
| Obtaining Handle to Object from Member Function | 25 Mar 2006 04:39 GMT | 1 |
How do I get a handle to an object from one of its member functions? I cannot find anything in the docs that shows a handle version of the "this" pointer - but there has to be one - right? Thanks,
|