| Thread | Last Post | Replies |
|
| wrapp a std::list | 05 Aug 2003 18:20 GMT | 1 |
I have to wrapp an unmanaged C++ class in order to use it in C#. For this I create a managed C++ dll which wrapp all the method of the unmanaged class. Now the problem is: how can I wrapp a std::list which is returned by an
|
| Object * to void * | 05 Aug 2003 17:07 GMT | 1 |
I have a native c++ class which has a method prototyped like : void f ( void *p1 , void *p2 , void *p3) .... on the other hand there is a .Net component which uses this class with an adaptor written in Mc++.
|
| How to pass an dynmic size array of a struct defined in a struct | 05 Aug 2003 13:06 GMT | 4 |
We have a MFC 6.0 C++ function that has as a parameter a class with a CTypedPtrList as a member. class CMyMFCListClass : public CObject {
|
| Run-Time Check Failure #0 - The value of ESP was not properly saved across a function call | 05 Aug 2003 10:14 GMT | 2 |
I get the error mentioned in the subject line, when I try to use a c# class from a native vc++ application via com-interop. I've got two classes each with their corresponding interface in my c#-assembly.
|
| Interop assembly remoting | 05 Aug 2003 00:24 GMT | 3 |
I posted this in the remoting group, but maybe someone here can help since it does involve interop... I am trying to use a remoting with the server being an Interop assembly. I have a "Rules Engine" application that is written in COM, and I created an
|
| using routines from my dll | 04 Aug 2003 12:27 GMT | 2 |
Hi there!!! I've got the following routine in my dll _declspec(dllexport) int InitializeGlobal(); and I want to use it in my C# project.
|
| How to pass an integer argument as "ref System.Object pvarIndex"? | 04 Aug 2003 12:25 GMT | 1 |
I'm having trouble calling the IHTMLFramesCollection2.item function in the mshtml interop dll from a C# project. The original C++ declaration looks like this, HRESULT item(
|
| Calling .NET Components in VB 6 | 03 Aug 2003 22:35 GMT | 1 |
I created a Remote .NET component and was able to call these components in VB6 but not without loading all the .NET dll's in the GAC. I used Regasm /tlb to register the tlb into the registry. Now that the class is registered in the registry, why do I still have to load all the dlls ...
|
| Referenced assembly 'Interop.SHDocVw' does not have a strong name | 03 Aug 2003 15:41 GMT | 3 |
As I understand it, this assembly is generated by VS.NET when I reference SHDocVw.dll. How can I tell VS to give it a strong name when it is generated? Or can I? Is it too late to generate a keypair for it once it's already been created, or can I just use sn.exe to generate one ...
|
| Loading up COM at runtime | 01 Aug 2003 22:04 GMT | 1 |
I'm a beginner at COM and .NET. Jus wondering can I dynamically load a COM object at runtime without adding reference during design-time (eg. maybe using ProgID?)? KW
|
| using "iphlpapi.dll" in C# to retrieve IP parameters... | 01 Aug 2003 21:28 GMT | 1 |
I'm trying to use the unmanaged "iphlpapi.dll" in order to retrieve some IP parameters... I found an example that uses the 'GetTcpStatistics' function, which worked nicely, however I can't succeed using the 'GetIpAddrTable' function in a
|
| Invoking C function from C# | 01 Aug 2003 19:21 GMT | 1 |
I hope this has a simple solution. I have a C DLL (that I don't have control over) that I need to call from C#. The signature for the method is: int MyFunc( char *in1,
|
| Microsoft Outlook 9.0 Object Library | 01 Aug 2003 19:20 GMT | 2 |
Does anyone know if this object can be used with ASP.NET? Everything seems to work fine with a .NET Windows application but with ASP.NET it doesn't seem to work. If you can, plese point me to some sample code with ASP.
|
| Opening Excel workbook from ASP.NET Page | 01 Aug 2003 08:05 GMT | 1 |
I have an Excel Object control on my ASP.NET page. How can force a specific Excel workbook ( say "c:\myfile.xls") in this object when my page opens. Alternatively, how can I open a specific exccel file in my ASP.NET Page.
|