| Thread | Last Post | Replies |
|
| R6002 "floating point not loaded" in Managed C++ DLL that links with LIBCMTD.LIB | 28 May 2004 16:31 GMT | 1 |
I'm developing a mixed-mode Managed C++ DLL using .NET 2003, and to avoid the potential mixed-DLL-loading-deadlock issue discussed in MS KB article 814472 (http://support.microsoft.com/?id=814472), I've followed the steps in that article appropriately. However, our
|
| Detect memory leaks | 28 May 2004 13:40 GMT | 2 |
I need a tool to check my applicationm for memory leaks. It uses mixed code and for now I didn't find proper tool. My application is managed c++ app and it uses mc++ wrappers for my unmanaged code (which uses MFC). When I stop debugging there is info about memory leaks but I'm
|
| Path of my exe file | 28 May 2004 06:26 GMT | 1 |
Maybe my question is trivial, but I need to get fullpath of my exe file where from it is executed esspecialy, when the directory with exe file is not current directory Thanks.
|
| How to: Add Tip of the Day to MFC app using VS.NET | 28 May 2004 03:02 GMT | 2 |
Anyone know how to add the standard tip of day dialog to an existing MFC app now compiled on VS.NET? It used to be in the component gallery but I can't seem to find this or figure out how to do it in VS.NET. Any help would be appreciated.
|
| __property set_ naming issue (managed C++) | 28 May 2004 02:15 GMT | 3 |
What would you expect from the following: enum Type { a, b, c }; public __gc class MClass {
|
| Converting managed int to unmanaged PBYTE? | 28 May 2004 00:43 GMT | 3 |
I have a managed method that has an int parameter that has to be passed to an unmanaged method that takes a PBYTE and associated length as a DWORD. Anyone have any sample code that shows how to do this? Thanks.
|
| Unable to upgrade VC6 exe to VC7 | 27 May 2004 20:45 GMT | 2 |
I have an application (EXE) implemented in VC6, that uses Stringrays Objective Toolkit and Objective Grid classes. When i try to port this application to VC7 i get various linking errors mostly with id LNK2001, LNK2005, LNK2019
|
| how to make a subarray? | 27 May 2004 17:28 GMT | 1 |
Writing my own algorithm to make a subarray in Visual C++ would be easy enough, but is there a useful function or method for doing this? I have strings stored as TCHAR[] and I want to get substrings of those, but the basic String.substr() function doesn't compile on that. I ...
|
| Delete all files with "a pattern" | 27 May 2004 11:49 GMT | 12 |
I would like to delete from a directory all the files that match: bar*.* I know that I could do for instance: system("del bar*.*"), but this will bring up the command prompt window and as my app is a winmain app this wouldn't be nice. I could use DeleteFile, but you can not use ...
|
| Speech SDK and copy protection | 27 May 2004 09:32 GMT | 4 |
I'm writing some program for voice commands ( for opening some programs ( word, excel )), i have some problems in this part. I'v downloaded MS Speech SDK for VC++6 but im using .NET.
|
| Mixed-mode DLL crashes when calling managed code | 27 May 2004 03:29 GMT | 1 |
I'm trying to make a plugin DLL for a third-party application, using VC++ .NET 2003. This DLL acts as a bridge between the C++ plugin API of the application, and my actual plugin code written in C#. When the app calls my unmanaged functions, they work fine. But as soon
|
| Main Form, Modeless Form, Forward Declaration Problem? | 27 May 2004 01:21 GMT | 2 |
Hello, I'm trying to accomplish the impossible by trying to do something equivalent of this example found here http://www.c-sharpcorner.com/Code/2003/Dec/DialogTutorial.as Starting with "Listing 2 - Changing the constructor of the modeless dialog to accept the parent object:" line ...
|
| _ASSERTE doesn't break into the code | 26 May 2004 23:54 GMT | 1 |
We use a lot asserts in our code, specifically _ASSERTE(exp) When the assert fires, there is the option to Abort/Retry/Ignore In VC6 hitting 'Retry' would take us to the code in the debugger but in VC7 there is another dialog "Unhandled exception" with the options Break/Continue. ...
|
| Grrrrrrrr...... "fatal error C1060: compiler is out of heap space" | 26 May 2004 20:17 GMT | 1 |
I am suddenly getting the obnoxious error C1060 when I try to compile my project. I have tried adjusting the /Zm switch as suggested by the help documents, but this is a project setting and not a VS.NET setting so that requires write access to the project file. This is an
|
| InitCommonControls Link Error | 26 May 2004 16:54 GMT | 3 |
I have a VC project I created a few years back (Visual Studio 97). I'm now trying to recompile it under .NET 2003. I'm getting a linker error... LNK2019: unresolved external symbol __imp__InitCommoncontrolsEx@4 referenced in function _WinMainN@16
|