| Thread | Last Post | Replies |
|
| Simple VB6 - DotNet Example | 15 Nov 2005 14:06 GMT | 1 |
Assuming that the following is wrapped in a suitable VB.net project with register for interop turned on Option Strict On Imports System.Runtime.InteropServices
|
| LoadLibrary with vs2005 | 15 Nov 2005 08:12 GMT | 2 |
I'm using vs2005 Beta 2 Window Mobile 5.0 PocketPC Emulator SDK I have a C++ dll project that export some functions. This is a sample function :
|
| ActiveX in a formless app or service | 14 Nov 2005 19:34 GMT | 4 |
I see thousands of posts on this one and no answers that help us in our situation. I could also use some help if not in solving the problem, then in education on what .NET is doing with AXImport and TLBImport utilities.
|
| Knowing when COM interop is possible | 14 Nov 2005 19:00 GMT | 3 |
Hello, We have a CRM system here called Pivotal eRelationship R99. I am writing a batch upload service to populate the CRM with data from various sources. Pivotal shipped a COM component in 1999 to assist with this kind of activity. It is an ActiveX 1.0 control module ...
|
| C# and Delphi Question | 14 Nov 2005 11:50 GMT | 1 |
I want to develop a C# plugin for a Delphi application that I use but do not know too much about interop. I think it should be possible but I am just not sure where to start. Can someone give me points on where I can find the information I need to get started?
|
| Calling unmanged c++ code from c# .net | 14 Nov 2005 08:52 GMT | 1 |
I have some filesand functions that are in c++ code that I need to call with c#, how do I do this?
|
| Register for COM Interop | 14 Nov 2005 08:40 GMT | 1 |
I have created a very simple .NET control with one method and have se the 'Register for COM Interop' build option. I am having problem calling it from VB6. In the first example I can create the control and it displays in my VB
|
| .NET and unmanaged C++ communication | 13 Nov 2005 16:29 GMT | 3 |
I am developing a ASP.NET application which uses a 3rd party API that is an unmanaged C++ DLL. The possible solutions that I have in mind to build the .NET to C++ bridge: 1. Import the unmanaged C++ DLL in the .NET (C#) program and call the
|
| AxSHDocVw.AxWebBrowser prompts for download | 13 Nov 2005 04:00 GMT | 2 |
I'm trying to use the AxSHDocVw.AxWebBrowser control in a form and when I call .Navigate, instead of showing the html page, the download prompt shows up. If I click open, it uses my default browser instead of the control. If I open an excel doc or a word doc on my local HD, it ...
|
| P/Invoke - Abstract C++ Class | 12 Nov 2005 23:18 GMT | 1 |
I've got an c++ class we need to use via interop. I wrote a little wrapper around the methods required using the thiscall calling convention to pass the pointer when invoking the class's members. (I'm getting an IntPtr to the class back from another interop call)
|
| Multiple assembly versions and COM interop | 12 Nov 2005 18:30 GMT | 2 |
Lets say I have an assembly, utility.dll, that I want to register as a COM component. I use regasm.exe to register the assembly as a COM component, then use gacutil.exe to install it in the GAC. At this point, I should be able to create an instance of the component using
|
| using VB6 Collections in c# | 12 Nov 2005 02:46 GMT | 3 |
I have a VB6-based COM object that I want to utilize in c# (VS2003.) I add a reference to the COM object (which creates an interop wrapper). I then create an instance of the wrapper class. The problem I'm having is a method of that class returns a VB6 Collection object. By ...
|
| How to get exported paramater names | 11 Nov 2005 18:52 GMT | 3 |
I need to make use of some functions in an unmanaged dll -- printui.dll. My question is how can I find the parameter names for each function in the dll? I have searched the internet, and pinvoke.net, and I have also run a dumbin /export on the dll , which helps me know what the ...
|
| Should I import? | 11 Nov 2005 01:12 GMT | 2 |
I'm using a com dll in my c# app which works ok if I add it to references and just use it. I only need to use a couple of interfaces. This means I need to distribute the interop file with my app. On the other hand I could define the interfaces in code and not use the interop file ...
|
| SendMessage Weirdness | 10 Nov 2005 21:27 GMT | 3 |
I'm modifying some code I found for drawing the ascending/ descending arrows on a listview control from a C# project I found on www.codeguru.com. The C# call to the SendMessage() API and the VB .NET call are giving me different behaviors.
|