| Thread | Last Post | Replies |
|
| Do you choose VS2002 or 2003? | 23 Jul 2004 15:56 GMT | 3 |
Is it a need to upgrade VC 7.0 to VC 7.1? Thanks. Vicent
|
| Question about garbage collection in in vc++ 2005 | 23 Jul 2004 15:04 GMT | 9 |
I was reading a ppt ( http://www.gotdotnet.com/team/pdc/4064/tls310.ppt ) and came aross this statement. "Users can leverage a destructor. The C++ compiler generates all the Dispose code automatically, including chaining calls to Dispose. (There is no
|
| DLL and VBScript | 23 Jul 2004 11:55 GMT | 2 |
All, I would like to write a DLL with a few function that are not available in WMI. I know how to write a dll but is there anything special that I must add to it if I want to be able to you the function from with in it.
|
| URGENT Mixing Managed/unmanaged C++ | 23 Jul 2004 09:05 GMT | 2 |
I encounter problems during execution of code like the followng that is part of Dll of managed C++ classes. When attempting to create the not managed objet (instance of CA) i always get the exception:
|
| Viewing Call Stack? | 22 Jul 2004 23:57 GMT | 3 |
I have a complex threading deadlock scenario that I've been able to reproduce in the debugger. I hit break and look at the call stack which should tell me what I need. Except I only get the very bottom of the call stack:
|
| convert from managed String to unmanaged char | 22 Jul 2004 21:55 GMT | 3 |
In managed C++, there is variable String *s. The variable got value from a C# assembly. Then I need to convert it into char *c in order to call an external function in a dll that accepts parameter func(char c[]). How to convert from String *s to char *c?
|
| Ambiguous template function, best way to solve it... | 22 Jul 2004 19:16 GMT | 2 |
I've got a template function move_by( rect<T>&, T x, T y) being called as rect<float> r; move_by( r, 3.0, 4.0 );
|
| Release won't run | 22 Jul 2004 17:56 GMT | 10 |
(Please excuse me for not really knowing where to post this. I picked the biggest and best audience I know of.) I am having trouble running my release build from VC7. It doesn't. When started, it just shows a message box about failing to
|
| FlashWindowEx does not work with Windows Classic theme | 22 Jul 2004 17:40 GMT | 2 |
I have an MFC application that uses FlashWindowEx to notify the user of an event by minimizing a window on the taskbar and calling FlashWindowEx. This works fine except if you are using the Windows Classic theme on Windows XP. If you switch back to one of the built-in XP themes ...
|
| Image processing | 22 Jul 2004 11:54 GMT | 1 |
I'm working with images in Visual C++ and I need a fast method to access to individual pixels of an image. Actually I'm using the GetPixelAddress method of the Image class, but it's too slow. Thanks for all.
|
| C++ code called from C# | 22 Jul 2004 01:37 GMT | 6 |
I have some legacy code I would like to wrap by some new managed C++ classes, put them all into a DLL and then call the managed classes from a C# app. Can anyone recommend me a link with some info about this?
|
| Ecma Doc Stack Example | 21 Jul 2004 21:47 GMT | 5 |
I copied this example off ECMA C++/CLI draft document, and it doesn't compile: #using <mscorlib.dll> using namespace System;
|
| PRJ0019: A tool returned an error code from.... | 21 Jul 2004 18:22 GMT | 1 |
error PRJ0019: A tool returned an error code from "Copying assemblies to target directory..." I got this when I added a reference to a project. The reference was to a dll created in another project. Now if I copy the dll itself over to
|
| How to convert String* to LPCTSTR ??? I found threads about that but don't work... | 21 Jul 2004 16:25 GMT | 8 |
Here's what I try : LPCTSTR tst = (LPCTSTR) (LPCWSTR) Marshal::StringToHGlobalUni(str); c:\MyNetPrj\Prj0001\stunt.cpp(244): error C2440: 'type cast' : cannot convert from 'System::IntPtr' to 'LPCWSTR'
|
| vc7 - stl vector | 21 Jul 2004 13:15 GMT | 1 |
i just migrated from vc6 to vc7. now, as i am using microsof visual studio .net, i try to compile my projects that are using stl vectors, i get errors reporting about some xtring?
|