| Thread | Last Post | Replies |
|
| app won't run after adding an empty class | 21 Nov 2006 07:50 GMT | 2 |
I'm wriiting an MFC C++ application which uses a third party C# .NET API via a DLL. The app runs fine. If I add a new, empty C++ class, and compile/link it refuses to run, complaining about not being able to load an assembly. Removing the class from the project and doing a ...
|
| [WindowsForms] Horizontal Line | 21 Nov 2006 03:28 GMT | 1 |
Does anybody know how i can put a horizontal line into my forms? i need one to create a simple "below the line" to seperate my sumup textbox from the other input-textboxes (like you know it from common calculations). I tried to add a label with underlines ________, but doesn't ...
|
| hash code generating algorithm. | 20 Nov 2006 19:22 GMT | 5 |
I am trying to provide some security to text files, by adding a signature at the end of each text file. this signature needs to be generated by some kind of
|
| Managed VC++ crashing in debug build caused memory leaks | 20 Nov 2006 19:22 GMT | 4 |
I was surprised to see memory leaks in our application when it crashed today. Basically, the code is written in C#, but with c# and C++ DLLS; its the latter (managed extensions) that cause the memory leaks (the new operator in crtdbg.h). Does the garbage collector not work in debug ...
|
| whats wrong with this stack | 20 Nov 2006 14:59 GMT | 2 |
There is a strang bug appearing not-so-often in my application. I'm pasting the stack calls window contents when my app crashes. Following it is: msvcr80d.dll!fastcopy_I(void * dst=0x01e46130, void * src=0x00001280,
|
| Managed pointers to pointers | 20 Nov 2006 14:42 GMT | 3 |
Hi, I've been trying to update some old C++ code and when i came across this: MyClass** ppOut I changed it to:
|
| Defining property getters and settings in cpp file | 20 Nov 2006 14:02 GMT | 4 |
Hi, does anyone know if it is possible to define the function body of a getter and setter in the .cpp file? I have tried this, but it doesn't work (Error 1 error C2039: 'get_VolumeDataList' : is not a member of 'VolumeInfo'
|
| I can't understand! my program report Error random when click X. | 20 Nov 2006 13:03 GMT | 4 |
can anybody have some ideas?
|
| why this? Exception code: C0000005 ACCESS_VIOLATION | 20 Nov 2006 13:03 GMT | 1 |
My application crashes all of a sudden giving me the following error. Can anybody help please? Exception code: C0000005 ACCESS_VIOLATION Fault address: 77FCE005 03:00002005 C:\WINNT\system32\ntdll.dll
|
| C++ constructors with parameters using in Visual Basic? | 20 Nov 2006 07:37 GMT | 3 |
I have a constructor with parameters. __gc public class GpsUsbDevice : public GpsDevice { public:
|
| calling managed c++ from an unmanaged mfc application (VC 7.1) | 20 Nov 2006 07:12 GMT | 1 |
I try to use a C# Dialog in a legacy MFC application. The problem seems to boil down to the following: from an unmanaged console application I can call any function of the managed bridge - if I try to do the same from my mfc application the application
|
| Using .RES files with DLL projects? | 18 Nov 2006 16:13 GMT | 2 |
I have seen DLL projects use .res files so that when you look at the properties of the DLL file from Windows Explorer you can see things like file version, description, copyright, etc. My question is how do you do this? (specifically, using MS C++ 2005
|
| Problem finding DLL | 18 Nov 2006 15:14 GMT | 2 |
I am trying to use unmanaged DLLs within managed code. My approach is to create a managed DLL with wrapper functions for my unmanaged functions. The unmanaged functions come from an unmanaged DLL. I can successfully build my managed DLL and use it from managed code.
|
| Graduate-Level OnLine Visual C++ Course ? | 18 Nov 2006 12:03 GMT | 1 |
I'm looking for an online (distance) Visual C++ course that can be taken as transfer credit for a Master's degree in Electrical Engineering/Technology. The student is familiar with C and C+ and is currently doing embedded
|
| DLL exported functions Issue | 18 Nov 2006 11:59 GMT | 1 |
I am writing code for creating DLL using vs2k5. My project is using Crypto++ lib project, which has a function (ComputeHash), and with the same name of function I have written in project with a little bit change as follows
|