| Thread | Last Post | Replies |
|
| Cannot convert parameter from cli::interior_ptr<Type> to HRASCONN | 31 Mar 2007 23:42 GMT | 8 |
I'm having a bit of trouble using an HRASCONN object as a class member variable inside my managed C++ class. When I call RasDial() and pass in the address of my HRASCONN object, I get the following compiler error from Visual C++ 2005:
|
| Marshal::StringToHGlobalAnsi and the corresponding overhead | 30 Mar 2007 20:56 GMT | 4 |
I have a c# GUI that needs to untimately send its data down to unmanaged c++. I've decided to do this by having a ref struct in the CLI layer and have the c# populate this, and then pass it back to the CLI layer. The CLI layer will then populate the unmanged struct where
|
| Data Transfers and IAsyncOperation | 30 Mar 2007 10:28 GMT | 2 |
Hello again! :( I'm trying to implement asynchronous DnD (and Copy/Paste) in a custom NSE: despite the lack of documentation, I found that i need my DataObject implement the optional interface IAsyncOperation. I want to always use
|
| VS2005 - Manually loading debug symbols | 30 Mar 2007 08:54 GMT | 7 |
I am attempting to manually load debug symbols for a module. I am doing it by carrying out the ff steps: i). Select the call stack window ii). right click and select 'Load Symbols' from displayed menu
|
| 800736B1 | 30 Mar 2007 04:30 GMT | 1 |
After upgrading to VS2005/SP1 we started seeing this error (800736B1) on our VC dlls. As close as I can determine it has something to do with the C runtime.? I copied the files from Microsoft.VC80.CRT along with the VC dll and this
|
| Storing objects into a generic list. | 30 Mar 2007 03:53 GMT | 1 |
I'm trying to rewrite visual c++ code into visual c++ .NET code and I've run across a problem with storing objects into a list. Here;s an example of the code I have: ref struct Cookies
|
| linkage errors in release build with VS2005 | 30 Mar 2007 03:18 GMT | 2 |
I am having linkage errors in my release build as ff: ------ Build started: Project: myModule, Configuration: Release Win32 ------ Linking... Creating library c:\mypath\myModule.lib and object
|
| Managed Event Question - Static Event | 30 Mar 2007 00:04 GMT | 3 |
I have a static event declared in a C++ ref class, that can then be handled in a VB app. I'm trying to expose the static event through the interface that the C++ ref class implements so the VB app can use the interface as preferred. How do you expose a static event through an ...
|
| VC++ 2005 SP1 : redistirbutable files | 29 Mar 2007 20:46 GMT | 7 |
Hi, I'm facing an issue and your help could be very helpful. In few words, I have a app build with VC++ 2005 SP1. I want to deploy it on a target machine, because the CRT dependency
|
| List View variable throwing NullException | 29 Mar 2007 03:38 GMT | 2 |
I've added a list view to a windows form and I want to add items and subitems to the list at runtime. The problem that I have is that when I try to use the list view control variable it throws the following error
|
| coredll.dll | 28 Mar 2007 23:18 GMT | 9 |
Where can I find coredll.dll? I have looked in Program Files\Microsoft Visual Studio 8\VC\ce\Dll\x86 where it is supposed to be but it is not.
|
| What dlls needed to deploy C++/CLI app | 28 Mar 2007 23:17 GMT | 4 |
What dlls do I need to redistribute with an application made using C# and C++/CLI for a Windows XP Pro SP2 PC? As far as I have understood the following are needed: msvcm80.dll
|
| MPR.DLL | 28 Mar 2007 23:13 GMT | 1 |
When trying to deploy my C#/C++/CLI application on a Win XP Pro SP2 with .NET FW 1.1 and 2.0 I get the following error when opening my C++/CLI application with dependency walker: Besides the MPR.DLL module in dependency walker there is a Delay-load module
|
| Running a function in the background | 28 Mar 2007 20:58 GMT | 6 |
Right now I have run into a problem. In my windows application I wish to run a function called waitForClient(), which waits for a clients connection using WinSock. Anyway, within the button click event, I have inserted this function. The only problem is that when you click
|
| basic_fstream and large files | 28 Mar 2007 18:16 GMT | 3 |
I have code written using the basic fstream object on a Win32 system. This is of course simply a typedef for basic_fstream<char, char_traits<char> >. This object can not be used to write or read files that are larger than 2Gb in size, as it would appear (from looking at the ...
|