| Thread | Last Post | Replies |
|
| XML comment generation in VS2005? | 15 May 2007 22:43 GMT | 2 |
Has anyone found a plug-in or crafted an add-in that will do the equivalent of the C#' editor's XML comment generation yet? Thanks, Duncan.
|
| CLI + this constructor | 15 May 2007 22:27 GMT | 2 |
I was wondering if there is a CLI equivalent to using the this keyword to overload constructors. You know where you would do something like MyClass() : this("something") {
|
| Fire KeyDown in C++ | 14 May 2007 19:18 GMT | 5 |
How do I fire the KeyDown event in Managed VC++? I am getting a compile error saying "event does not have a raise method". Please help. regards,
|
| Bad enough to be a bug | 14 May 2007 14:57 GMT | 4 |
I'm amazed at the following generated code. The environment is: VS2005 SP1 Debug mode
|
| How easy is it to accidentally not use pin_ptr where you ought to? | 13 May 2007 22:55 GMT | 7 |
I've got a project with a fair bit of mixed C++/CLI calling native code, often passing raw pointers - and I'm worrying that we may have occasions where we don't use pin_ptr when we need to. However, after a few experiments I was unable to compile code (VS2005)
|
| dllexport problem on native Singleton in mixed mode dll | 13 May 2007 21:06 GMT | 1 |
I want to give multiple native classes (in different mixed mode dlls) access to a managed output window (for error messages). Therefore I wrote a native singleton with __declspec (dllexport). I get the following compiler errors: Error 224 error C3389: __declspec(dllexport) cannot ...
|
| coping in Media Center | 13 May 2007 16:40 GMT | 1 |
Hi, I'm having a problem the coping cd's etc option is missing in Media Center. It used to be available but it has just disappeared! Can anyone help. Thanks
|
| Stupid vc++ question, memory leaks | 13 May 2007 15:50 GMT | 3 |
I get the following output in vs2005: 'AllocationTest.exe': Loaded 'C:\WINDOWS\system32\msvcrt.dll', No symbols loaded. Detected memory leaks! Dumping objects ->
|
| NT service / printf question | 13 May 2007 06:54 GMT | 1 |
Is there much overhead leaving in printf calls for a release build of my NT service (VC8)? This app runs as a NT service or console app so it's nice to have the console ouput when troublshooting the application. The console only has a fixed buffer size so I guess that running ...
|
| VC8 / CLI / MFC linking question | 12 May 2007 00:41 GMT | 1 |
I have a managed C++ DLL (VC8) that I would like to statically link with MFC (it consumes both native and managed resources). What project settings must i specify to produce a managed C++ DLL that is statically linked with MFC? Is this even possible?
|
| IIS 6 / native memory question | 10 May 2007 23:16 GMT | 3 |
When I run my 32 bit VC 8 DLL hosted by a managed C++ Winform APP on Win2003 32 bit with 4GB ram it runs fine. When I run the same DLL hosted under a Managed C++ ASP.NET 2.0 Webservice project (also on Win2003 bit with 4GM ram, the DLL fails). If i downgrade the box from 4GB of ...
|
| Using string variables inside classes | 10 May 2007 11:51 GMT | 3 |
I'm trying to use a string type variable inside a class. I can do this fine with no problems when the class is inside a cpp file simply by adding #include <string>. However, my program has the class specification in a header file and the
|
| Allocate reference type on native heap? | 10 May 2007 07:23 GMT | 1 |
I apologize if this question has been asked before (I imagine it has). But, I'd like a definitive response. Is it possible using C++/CLI to allocate a (normally) managed reference type on the native heap? That is, instead of using gcnew, and being subject to garabage collection, ...
|
| C++/CLI WinForms app + native static library with singletons = cra | 10 May 2007 04:06 GMT | 6 |
I've been trying for some time now to move to C++/CLI, but I have several large legacy C++ static libraries I need to use. When I set up a simple solution with a C++/CLI Winforms app and a C++ native static library, they work well together _unless_ I have, it seems, any static ...
|
| wide character (unicode) and multi-byte character | 09 May 2007 09:23 GMT | 17 |
Wide character and multi-byte character are two popular encoding schemes on Windows. And wide character is using unicode encoding scheme. But each time I feel confused when talking with another team -- codepage -- at the same time. I am more confused when I saw sometimes we need ...
|