| Thread | Last Post | Replies |
|
| LNK2001 Error - MC++ Wrapper dll calling fcns in C library compiled with VC++ 6 compiler | 25 Mar 2004 18:06 GMT | 1 |
I am writing an MC++ wrapper library that provides a managed interface for functions in a c library compiled under VC++ 6. I get link 2001 errors for all method functions past the first 22 defined in the class Everything seems to work fine if I include a smaller number of functions
|
| Underscore and Menu | 25 Mar 2004 18:00 GMT | 1 |
Hello, All! When I create menu in the Form as follows, I don't see underscore character (_) in it. It appears only if I press Alt key. How can I make my menu look like any other "normal" menu? class MyForm: public Form {
|
| Using Managed C++ DLLs | 25 Mar 2004 17:34 GMT | 2 |
(If this is a repost, please ignore it, I have posted this already but it never showed up Hi I am writing a project in Managed C++. I have a couple classes that are quite isolated from the rest of the project and wanted to separate them so that they could be developed ...
|
| Win32.RegistryKey BUG????? | 25 Mar 2004 12:17 GMT | 1 |
I Wonder... why does the 'RegistryKey' object saves an 'unsigned int' as a string type in the registry while 'int' is being saved as a DWORD type??? Is this a BUG or there is a logical explenation for that??? following is a code example that demonstrate the problem Microsoft: ...
|
| My local variable addresses are changing | 25 Mar 2004 11:05 GMT | 8 |
I work on a large native c++ application. We have about 15 developers. We recently moved to "Visual C++ .net 2003 7.1." Two devleopers have seen an odd problem since we migrated. The address of local variables change when they are passed to another
|
| managed vc to create .dll | 25 Mar 2004 06:40 GMT | 1 |
i'm tring to learn creating a dll and including it to a program... iknow that in csc.exe if you give output parameter as file.dll it automatcally converts to dll... is it same for cl.exe nad link.exe ??? i couldn't find much about this on the internet
|
| WaitHandle::get_Handle --> HANDLE | 24 Mar 2004 21:44 GMT | 1 |
Is it safe to assume that the IntPtr returned by System::Threading::WaitHandle::get_Handle can be cast to a HANDLE? I have a legacy function that takes an Win32 event handle that I'm trying to wrap. Thanks,
|
| GetLogicalDrives - enumerating mapped network drives | 24 Mar 2004 21:02 GMT | 1 |
I have developed a program that is run as a windows service. It uses the GetLogicalDrives() function to enumerate all the drives on the system. It is necessary for the program to get a list of mapped network drives in addition to logical drives.
|
| Disassembly notation in 7.1 - can't see variable's address | 24 Mar 2004 20:02 GMT | 8 |
This c++ line in MSVC++ .net 2003 7.1: f(&d); Generates this assembly: 00411C67 lea eax,[d]
|
| Passing a System::String* to a win32 API | 24 Mar 2004 14:54 GMT | 1 |
How can pass a System::String* variable to a Win32 API? how can I convert the System::String* to LPCSTR ????
|
| [newbie] Attach to remote process | 24 Mar 2004 08:47 GMT | 1 |
Is it possible to attach to an *already running* process in a remote machine using VC 7? Thanks for the info, Ragi
|
| Overloading of [] operator ? | 24 Mar 2004 08:42 GMT | 4 |
Is it possible ? I can't figure out how to do it. -- Gawel -------------------------------
|
| Incremental linking doesn't work | 24 Mar 2004 02:34 GMT | 3 |
My large multi-project workspace does not incrementally link in visual c++ 2003 .net 7.1. You can see some benchmarks and verbose output describing this problem here: http://www.stankevitz.com/visualstudio/
|
| __value struct MyStruct : IMyInterface | 23 Mar 2004 22:43 GMT | 2 |
When trying to declare a value type struct that inherits an interface, I get a compiler error stating that a sealed class cannot be abstract. When I change __value for __gc it builds ok. My question is: Structs that inherit Interfaces have to be reference types? Is this also ...
|
| VC++.NET without VS | 23 Mar 2004 20:42 GMT | 7 |
is there a way to compile the cpp source that i wrote at notepad ??? for example in c# you could use csc.exe or in j# > jsc.exe
|