| Thread | Last Post | Replies |
|
| does polymorphism work in COM? | 06 Sep 2006 14:29 GMT | 1 |
-- begin code -- // strongly typed list of base class List<Base> MyList = new List<Base>(); //the method i want to expose to a COM scripting client, which returns
|
| COM & static member function | 05 Sep 2006 16:13 GMT | 2 |
in a .NET class I wish to use from a COM client, I have a static member function "LoadFromFile" that returns an instance of that class: class Myclass : MyclassCOMinterface {
|
| why is this simple dllimport not working? | 05 Sep 2006 05:01 GMT | 3 |
Hi, I'm new to using dllimport. I'm getting the following error: System.EntryPointNotFoundException. Here is my code: using System;
|
| Can't access COBOL DLL from C# program | 04 Sep 2006 21:17 GMT | 3 |
I cannot get my C# program to access a DLL program written in COBOL. I use the following code to represent the program: [DllImport("readmf.dll")] public static extern void CYREAD(string linkfile, linkdata ld);
|
| SuppressUnmanagedCodeSecurity in .NET 1.x runtime? | 04 Sep 2006 16:28 GMT | 1 |
I have an assembly which calls a native method marked with the SuppressUnmanagedCodeSecurity attribute (the security implications of which are not the intended topic of this post). The assembly is compiled using .NET 1.0 but intended to be used from client
|
| excel NumberFormat AND localization | 04 Sep 2006 16:07 GMT | 2 |
I wrote an app (c# 1.1 framework) that formats excel files generated from html. I am using numberFormat ("#,##0.00") on certain columns that display pricing. i am in Turkey but, I use XP pro with regional settings set to
|
| excel interoperability | 04 Sep 2006 08:27 GMT | 1 |
i have already exported a datagrid to an excel workbook on button click. what i need to do now is that on every subsequent button click i need to add a sheet to the existing workbook. so all the reports represented as datagrids are stored into one excel file.this is true of
|
| Marshal an Array | 03 Sep 2006 03:16 GMT | 2 |
I am attempting to pass an array of objects to an unmanaged DLL function as an array of structures. The array is used as input and output. I think I am getting the data to the DLL, but I do not get modified data back from it (I am certain the returned values should be
|
| C# Class using VB6 Interface incorrectly identifies parameter | 03 Sep 2006 02:25 GMT | 1 |
Here's the breakdown: 1. My class is written in C# 2. It inherits an interface called AlfaBVIO._BVInput which looks like this via the Interop metadata:
|
| How to effectively transfer a Structure or a collection of Structure to managed code? | 03 Sep 2006 02:13 GMT | 1 |
I mean, the only method, I wanna use to P/Invoke into unmanaged code and retrieve a pointer which point to a block of memory, is formed as below, [DllImport("stuffs.dll"), CharSet = CharSet.Ansi)]]
|
| How to access C# indexer in Jscript????? | 01 Sep 2006 21:54 GMT | 1 |
I have one Pages collection class, in which i have defined inexer. My collection class is COM enabled, and i am using its object in my scripting engine. Now, when i using Jscript in my scripting engine, i think the C#
|
| Debugging .NET code called as COM module from unmanaged c++ code? | 01 Sep 2006 11:25 GMT | 1 |
I'm working on a project where the main application is written in unmanaged c++ (VC6), but the module I'm working on is written in c# and exposed as a com object. I have some trouble debugging the .NET part. When I try to attach to the
|
| Account permissions needed for deployment of IE Toolbar (C#) | 01 Sep 2006 03:37 GMT | 4 |
I'm trying to deploy a toolbar for Internet Explorer, which according to the documentation requires COM-registration that adds entries to HKEY_CLASSES_ROOT and HKEY_LOCAL_MACHINE, setting up sub keys in {CLSID}\"Implemented Categories" etc.
|