| Thread | Last Post | Replies |
|
| variable argument list | 21 Aug 2004 14:38 GMT | 2 |
how can I use variable argument lists in C++.NET (cfr 'params' in C#) ? thnx Chris
|
| How to make Global functions for many classes in C# | 20 Aug 2004 19:09 GMT | 1 |
I have created control array classes for buttons and textboxes and affixed them to a form class. In VB I can easily create a module with fuctions that can be accessed from any class. How can I do the same in C#? When I use the 'Static' keyword I get an error.
|
| String object as function argument | 20 Aug 2004 18:17 GMT | 2 |
I’m not sure where to post this, so I post it here. It’s more like a VC++.NET / Managed Code problem. Probably easy to fix for you guys. I want to use a String object as a parameter for a function. Here is what it should look like:
|
| DllMain, DLL_PROCESS_ATTACH, and DLL_PROCESS_DETACH in MFC Extension DLLs | 20 Aug 2004 16:31 GMT | 1 |
With MFC Extension DLL that exports classes through __declspec(dllexport) DLL_PROCESS_ATTACH/DLL_PROCESS_DETACH 1. Does each a process loads dll only once and unloads dll only once during its life-time?
|
| VC++ 2005 and ref objects in the stack | 20 Aug 2004 03:53 GMT | 5 |
I just came across this article: http://msdn.microsoft.com/visualc/default.aspx?pull=/library/en-us/dnvs05/html/s tl-netprimer.asp and the examples used involve containers created in the managed heap. However C++/CLI enables ref objects in the stack. Will not this be
|
| Managed Extensions support in Visual C++ 2005 | 20 Aug 2004 02:11 GMT | 4 |
Does anyone know if C++ w/Managed Extensions code written for VS 2002/2003 will compile in VS 2005? I've read a lot about the changes to C++ in .net ( the new CLI syntax ), but nothing I've read mentions backward compatibility. They've removed overloading the C++ pointer,
|
| decompile DLL's | 19 Aug 2004 22:17 GMT | 1 |
I would like to look inside an old dll I found. Can anybody tell me, how to decompile a dll? Does anybody know a tool which does that for me? regards, me
|
| pointer to member conversion to a pointer to member that is a member's base class | 19 Aug 2004 18:20 GMT | 12 |
There is the problem in nutshells (see the program bellow): It is ok to convert pointer to F<T> to the pointer to I. Now if I have pointer to member "F<T> entity::*" can I convert it to the "I entity::*"?
|
| CL Command line and default INCLUDE dir | 19 Aug 2004 18:09 GMT | 2 |
I use the command line :
>cl -c /nologo /Od /MDd /GX /FoDebug\gzio.obj gzio.c and I get an error : gzio.c(10) : fatal error C1034: stdio.h: no include path set
|
| Coping one array to another in Managed C++ | 19 Aug 2004 14:58 GMT | 3 |
How can I copy 5 bytes from the middle of one array to another in Managed C++? The following code segment causes the compilation errors below: unsigned char cResult __gc[] = new unsigned char __gc[256]; unsigned char cBuf __gc[] = new unsigned char __gc[256];
|
| VS2005 and multiple inheritence | 19 Aug 2004 14:39 GMT | 5 |
I heard that managed C++ in VS 2005 supports multiple inheritence. Is this true? Bob Rundle
|
| How to use .NET Framework in MFC application with VS | 19 Aug 2004 11:48 GMT | 3 |
I had some codes written with MS VC6 MFC, Now I wanna use some .NET framework functionality, such as Web Service, Can somebody tell me how to implement it. Is it posible that an application is written with two diffrent library concurently, MFC & .NET Framework. Any snippet code & ...
|
| Using the VC++ 2003 Toolkit with Visual C++ .NET 2003 Standard Edition | 19 Aug 2004 01:24 GMT | 2 |
I use the Visual C++ .NET 2003 Standard Edition which doesn't include an optimizing compiler. But Microsoft released the VC++ 2003 Toolkit (http://msdn.microsoft.com/visualc/vctoolkit2003/) which provides an optimizing compiler. Is it possible to replace the original "Standard"
|
| C runtime library woes in Managed C++ | 19 Aug 2004 00:27 GMT | 5 |
When creating a Managed C++ DLL using the Visual Studio 7.1 Solution Explorer (by selecting Add New Project and then either choosing Class Library (.NET) or Windows Control Library (.NET)), the IDE sets the /MT(d) compiler switch (statically linked multithreaded C runtime
|
| MCppCodeDomParser Error: Line: 66, Column: 1 --- Unexpected token for a 'term' | 18 Aug 2004 21:22 GMT | 1 |
I keep getting problems of the sort in the title. Is there anything I can do about it? I can't keep recreating the gui from scratch. It takes too long and it happens very frequently (with imagelists?) What does the line 66 column 1 refer to? Can OI edit anything to fix it.
|