| Thread | Last Post | Replies |
|
| UINT16 error | 21 Sep 2005 19:43 GMT | 11 |
I am trying to create a managed c++ wrapper and have run into a problem is when SetNewNetworkCallBack is run. It doesn't like that NetworkID isn't an UInt16. I get the error: CCommManager::SetNewNetworkCallBack' : cannot convert parameter 1 from 'void
|
| non-sense assertion in VC7.1 | 21 Sep 2005 05:01 GMT | 1 |
Try to compiler and run the following code in DEBUG mode, an assertion dialog will be popped. Can I ignore this assertion dialog and why does this code cause to an assertion? --
|
| vc++.net, Server Application? | 20 Sep 2005 16:10 GMT | 4 |
Hello to all, I want to know that wat's the future of vc++.net? I mean is it going to remain there or not, and if does then wud there be big changes to it or they'll stick with the current one?
|
| Deletion of a COM object in VC6.0 | 20 Sep 2005 14:41 GMT | 4 |
I have a project that contains a COM object running in the in-process configuration. The project was developed by VC6.0 with SP 3. The project has been put into production for long period of time and it worked just fine. Right now, I want to migrate the project to VC7.1. During ...
|
| Coding Problem, Help Needed | 20 Sep 2005 11:28 GMT | 3 |
Hello to ALL, I'll explain my problem by pseudo code class A {
|
| Managed C++ Dll - Where's my output? | 20 Sep 2005 10:38 GMT | 4 |
I have created a very small test wrapper class in Managed C++ which wraps up some very simple native code. I am using C# 2 + Visual Studio 2005 Beta 2. I have the back end C++ library without CLR which is to be wrapped that
|
| Best book for learning MFC/VC 7.1 for developing rich GUI apps ? | 20 Sep 2005 08:29 GMT | 5 |
I am a C/C++ developer of quite a few yesrs, although I am relatively new to Windows (Unix background). I am about to begin work on a project that would require me to develop several GUI rich frontend applications. I would like to hear from developers ou there if there is a book ...
|
| static initialization of stl map | 19 Sep 2005 21:45 GMT | 4 |
I'm trying to fill a map (the STL associative array) with a set of values. In the normal nomenclature, I could initialize an array something like this: int array = {1, 2, 3, 4}; Is there anyway to initialize a map in a mildly similar way? I (naively,
|
| Print ( char )10? | 19 Sep 2005 18:50 GMT | 4 |
Hey, I'm trying to write a file with unix-style newlines (ASCII character 10) from a c++ program on Windows...it seems that the most straightforward way to do that is just to print ( char )10, but it seems that when I try to print that to the file, the program still prints the ...
|
| wat is .net framework? | 19 Sep 2005 14:37 GMT | 1 |
wat is .net framework from MS? wat is supposed to do programming world? any easy & meaningful explanation? thanx,
|
| singleton implementation can causes vc7.1 IDE stuck up?? | 19 Sep 2005 14:17 GMT | 2 |
i'm just wondering why this happens, here is the scenario: class CRenderer : public TSingleton<CRenderer> .. #define RENDERER Singleton<CRenderer>::Instance()
|
| problem with minitialize() and mterminate() | 19 Sep 2005 10:13 GMT | 1 |
I have a mix-mode Managed C++ dll which wraps some C++ static library and exposes functions to C# IRTDServer. So the scenario is like this: C++ Static library (with static member variables in classes)
|
| Another newbie question... | 18 Sep 2005 14:42 GMT | 4 |
I am just trying to switch from C++ 6 to the C++.NET and face an immediate problem I cannot tackle. Please help! I created a new VC++ standard SDI project in the Visual Studio .NET 2003. Now I want to have a bitmap on the background of the mainframe
|
| Console Project Icon | 17 Sep 2005 09:10 GMT | 1 |
How do I set the icon of the .exe file created by a Win32 Console project? Thanks.
|
| freeing static managed objects from native dll - cant use dllmain | 17 Sep 2005 05:53 GMT | 7 |
I have a managed cpp wrapper. Im using this in a native dll as a static variable. I need to free this library when the dll is done being used. The perfect place to do this is DllMain for DLL_PROCESS_DETACH, but I can't do this when touching managed code, even if its just calling ...
|