| Thread | Last Post | Replies |
|
| Marshalling `bool' .NET type to a unsigned char C type | 10 Dec 2003 00:46 GMT | 4 |
I have the following C code generated in `test.dll': __declspec(dllexport) unsigned char __stdcall test (int i, int j) { return (unsigned char) ((i & j) == j);
|
| A little stuck | 09 Dec 2003 23:57 GMT | 1 |
I'm wrapping a call to the netapi32 function NetDfsGetClientInfo. I'm a bit stuck when it comes to the parameter LPDFS_STORAGE_INFO which is in the DFS_INFO_3 and DFS_INFO_4 structs. MSDN says that LPDFS_STORAGE_INFO is a pointer to an array
|
| ActiveX Object is different type in Web and Windows applications | 09 Dec 2003 23:53 GMT | 1 |
I have an ActiveX Component that can either be used as a control on a form, or it can be instantiated in code to work as an automation server. The project I am working on contains three solutions, a
|
| COM Interop Registration Failing in VS Build | 09 Dec 2003 15:01 GMT | 5 |
I'm trying to build an assembly with a COM-visible type that derives from a COM-invisible type in another assembly. Here is a simplified overview of the hierarchy: support.dll
|
| Calling out-of-proc COM object from ASP.NET | 09 Dec 2003 14:25 GMT | 3 |
Anybody here can shed some light on this issue? Is it at all possible to call out-of-proc COM objects from ASP.NET? If yes, what configuration settings are required? I played around many hours already trying to get all security settings done
|
| in place activation | 09 Dec 2003 12:12 GMT | 3 |
i need to host in place UI servers in my .net winforms app. is it possible? a code sample will be greatly appriciated.
|
| Multi-threaded apartment model in C# COM objects | 09 Dec 2003 09:11 GMT | 2 |
I have a COM object written in C#, which I'm having trouble with. It is a database access library which is being called from unmanaged C++. Unfortunately, I don't seem to be able to call multiple instances of the
|
| GetIDsOfNames throws COMException Unknown Name | 09 Dec 2003 08:00 GMT | 2 |
I am using Platform Invoke and I am trying to execute a sample VBScript using IDispatch.Invoke. However, when I call IDispatch.GetIDsOfNames I get an error Unknwon Name. Any help would be appreciated? Below is the sample code.
|
| Long far * | 09 Dec 2003 04:08 GMT | 2 |
I am having a bear of a time getting this to work. The C++ prototype is #define FEXPORT __declspec (dllexport) #define FTYPE CALLBACK
|
| VB to C# and __ComObject-problems | 08 Dec 2003 19:46 GMT | 3 |
I'm working on a migration VB.NET to C#.NET. One function scans all links of a HTML-Document to other pages. All links are available with "doc.links.item(i).href" VB.NET
|
| Custom Marshaling and Interop in C# (array of structs inside struct) | 08 Dec 2003 18:45 GMT | 1 |
I am trying to marshal a data structure comprising of a structure inside a structure and also an array of structures inside a structure using the default marshaler through the StructLayout machanism.
|
| Active X control and Strong Named assembly | 08 Dec 2003 14:53 GMT | 6 |
I have an assembly with a strong name. I am trying to use several Active X controls. I understand these controls need to be strong names also. What I don't understand is how to do that. I have run 'aximp c:\winnt\system32\msmask32.ocx
|
| Missing Microsoft.Office.Interop | 08 Dec 2003 14:48 GMT | 5 |
I cannot find the Office.Interop.Word.dll in the New release version of Office. I developed some .Net Word applications under the Word 2003 Beta release. I did not install the release version until after the Beta expired. Now I have installed the release version, but .Net ...
|
| Hang up when PInvoking DnsRecordListFree() in c# | 08 Dec 2003 12:08 GMT | 2 |
I'm trying to reverse an IP in c# with PInvoke and the DNSAPI instead of using the Dns class (because this later doesn't permit to deactivate the NETBT resolution, and having in mind of MX reverses and so on). The following code works perfectly, except the call to ...
|
| Calling VB6 COM from VB.NET, best way to deploy? | 08 Dec 2003 00:41 GMT | 1 |
My VB.NET app needed to use functionality from an existing COM+ (VB6) DLL. So, I did "Add Reference" and added the COM reference. Visual Studio.NET automatically generated a DLL, "Interop.<COM-DLL-NAME>.dll" This is a console application that is part of a batch process. Everything
|