| Thread | Last Post | Replies |
|
| Confused about __crt_dll_terminate | 13 May 2004 01:14 GMT | 1 |
I'm wrapping unmanaged C++ classes using the standard managed C++ approach. i.e. a __gc class that contains an internal pointer to an unmanaged class. The purpose is to generate a .NET class library from our unmanaged class library.
|
| longs in managed C++ | 13 May 2004 00:50 GMT | 6 |
Is a long in managed c++ a 64-bit number like in C# If so how can I distinguish between that and one that's in some unmanaged code, and therefore that is 32-bit Call it an int
|
| Question about the dreaded MC++ | 13 May 2004 00:47 GMT | 24 |
Can managed C++ be trusted to handle the garbage collector correctly in the right bit if I have a project with unmanaged and managed parts in it?
|
| How to set library paths in VC++ .Net? | 13 May 2004 00:45 GMT | 2 |
Basic question here, I think-- how do I tell the compiler where to look for static library files? I'm trying to compile some apps using DirectX 9, and VC++ can't find the .lib file needed. In VC++ 6 I could set the paths for where to look for them, but in VC .Net I only seem ...
|
| Problems with an Inherited Form | 12 May 2004 22:26 GMT | 1 |
I'm working on a series of projects, all of which have some fundamental things in common. Those common elements are abstracted into a form which the projects inheret from. I started a new project, and added ParentForm.cs to it via the Solution Explorer. (Right Click -> Add -> ...
|
| OLEDB/Access Compilation Error | 12 May 2004 22:22 GMT | 1 |
I am getting the following when compiling mfc application in VS .net #error Security Issue: The connection string may contain a password // The connection string below may contain plain text passwords and/or // other sensitive information. Please remove the #error after reviewing
|
| hard to open excel while debugging | 12 May 2004 19:16 GMT | 2 |
Anybody notice that while debugging, excel (and some other apps) have a "hard time" opening? Anybody know why this is? "hard time" - takes 20 seconds to open, low CPU usage. I'm using VC++ .net/2003/7.1, native code.
|
| Ensuring unmanaged pointers held by managed classes | 12 May 2004 17:03 GMT | 7 |
I have an unmanaged pointer to a class that I want to hold in a managed class. I pass the pointer (from unmanaged code) in the constructor of the managed class, and at that point it has value. It is stored in a member variable in my managed class declared as MyObj __nogc* pMyObj. ...
|
| Is there a way to tell if a macro paramerter is managed? | 12 May 2004 15:57 GMT | 1 |
I have a macro that can determine the number of elements in an array type. It is defined as follows #define ARRAY_SIZE_NOGC(x) (sizeof(x) / sizeof(x[0]) This works with unmanaged array types, but not with pointers, since the size of a pointer is always the same and not the size of ...
|
| Sorted ListCtrl does not display Values correctly | 12 May 2004 09:02 GMT | 1 |
I have a dialog which contains a tree & list Control. On clicking, of tree item, the list ctrl list changes. The list ctrl has 2 fields(Name & Value) & is of 'Report' Type. The list ctrl data is filled from Objects of a class CMyCLass which consists of Members -Name & Value
|
| Debug Error on virtual unmanaged functions. | 12 May 2004 08:06 GMT | 1 |
Hello, I'm writting an application using mixed mode with C++ and C++.NET, and I have a problem, if I put a breakpoint or try to enter (with step by step) into a virtual and unmanaged method, the debugger tell me: "There aren't source code avalaible for the current location",
|
| unmanaged code in VC++.net | 12 May 2004 01:01 GMT | 1 |
I am trying to write an unmanaged C++ program using VS.NET 2003. Its giving some errors. So, my question is can we write unmanaged code in C++. This is the program I wrote. Can you suggest me some material which I can refer
|
| "FOR" in preprocessor macro | 11 May 2004 23:46 GMT | 3 |
would it be possible to sort of engineer some sort of preprocessor macro that does a 'for' loop. i.e. for where you would normally use a normal for loop, but when it is known ay compile time whay the variable is, hence unrolling the loop.
|
| MT runtime library | 11 May 2004 23:42 GMT | 4 |
In the file settings for one of the .cpp files in a Win32 unmanaged DLL project, the runtime library it is using by default is Multithreaded Debug. Is there any point in using multithreaded library if it isn't multithreaded DLL? Or does it need this to support multiple clients at ...
|
| question on _strrev | 11 May 2004 21:58 GMT | 8 |
when using _strrev to reverse a string, does it actually go through and pick up each character in turn and put it to the new position, or does it do some clever pointer arithmetic meaning it doesn't take longer? the longer the string is? I'm afraid I have no knowledge of machine ...
|