| Thread | Last Post | Replies |
|
| Connected users list | 09 Jun 2005 10:26 GMT | 1 |
How to get the list of the users connected to my system?
|
| Can't destroy Excel Process; tried Just about everything! | 09 Jun 2005 10:17 GMT | 16 |
I am trying to use .NET with Excel. I installed Office 2003 and selected .NET programming suport option, so it installed all those PIA, as MS sugests. But I can not find a way to destroy Excel process, it still hangs in the taks manager' Processes as running. I am trying very simple ...
|
| do you need to pin on passing byte[] to native? | 09 Jun 2005 03:19 GMT | 8 |
In browsing some of the framework code with reflector, I see a char buffer being pinned to be passed to native code. A byte array however is not. Does a byte array need to be pinned before being passed to native code? System.Web.Hosting.IsapiWorkerRequestInProc ...
|
| How to get pointer to array back to C++ from c# | 09 Jun 2005 03:11 GMT | 6 |
Here is a code fragment from some C++ code: Header File 1 declaration (this is supplied by a third party vendor: class User; DLL_API User* pickUser( Global* g, User** users, int numUsers );
|
| RegAsm Error: Error to register the type library exported: Access denied | 08 Jun 2005 21:36 GMT | 1 |
I'm trying to register a .NET DLL with COM interoperability. When I execute regasm to register, it seems to work all good but at the end of process throws the following error (in spanish): "Error de RegAsm: Error al guardar la biblioteca de tipos exportada:
|
| Calling a COM object from a different thread | 08 Jun 2005 17:00 GMT | 4 |
I have the following simple Architecture: Server in CSharp <===> COM DLL (Apartment threading) <====> DB When I start the server I need to load several COM objects from the DB.
|
| Registering a COM dll from C# | 08 Jun 2005 02:30 GMT | 2 |
we have a software architecture that allows extension via providing COM dlls with specific interfaces implemented. Although we switch the code to .NET, we need to handle old and new COM dlls that extend our product. Part of the initialization of such extensions is the ...
|
| c# class library called from vb6 yields filenotfoundexception upon WMI call | 08 Jun 2005 00:13 GMT | 1 |
I am calling a c# class library from vb6 that performs some simple instrumentation calls, for example: (namespace is WMIWrapper) public void SendToWMI(string message)
|
| ExtTextOut interop question | 07 Jun 2005 22:11 GMT | 2 |
Hello, I am trying to call GetTextOut from C#, and am having problems. When the code below runs, only the first character is drawn, and I eventually get a stack exception: ArrayList oWidths = _getCharSpacing( p_hDC, sOutput, p_iMaxWidth, bIsMulti ); IntPtr hPtr = Marshal ...
|
| QueryInterface for interface XXX failed. | 07 Jun 2005 20:42 GMT | 3 |
I have been working with a third party COM component for a couple years now, and have been integrating our .NET website, We recently upgraded the version of the third party application, and now when I run my code, I get:
|
| regasm - wrong RuntimeVersion for CCW generated | 07 Jun 2005 15:14 GMT | 1 |
I'm creating a CCW for a .Net 1.1 DLL. regasm, however, is outputing the wrong RuntimeVersion of v1.0.3705 - rather than v1.1.4322 which it should be. This means I'm having to put <supportedRuntime version="v1.1.4322"/> in an application config file to get the DLL to run correctly.
|
| Calling C# from C++, need to late-bind to the C# object. | 07 Jun 2005 14:24 GMT | 2 |
My C++ isn't so good, so excuse the terminology mixups. I have a C# COM application. Following examples and documentation, I can get the application so that it's callable from C++ if I embed something like this in my C++ program:
|
| Interop DLL linking | 07 Jun 2005 14:02 GMT | 2 |
I have an ASP.NET (1.1) webpage that has a reference to a VB 6 COM DLL (SMS_AR.DLL). That part works. However, the COM DLL has a reference to a VB.NET 2003 DLL (SMS_PCC.DLL). In my project References folder, I see Interop.ADODB and Interop.SMS_AR. I
|
| VC++ to C# | 07 Jun 2005 13:50 GMT | 1 |
I am having C# dll supplying services to C# applications. I want to use this C# dll also from unmanaged VC++ dll but I do not want to convert the C# dll to strongly name and COM. Do I have any way of doing so, maybe using another VC++ mixed mode dll that the VC++ unmannged dll will ...
|
| Marshalling managed buffer to unmanaged code | 07 Jun 2005 09:01 GMT | 4 |
is it possible to create buffer in managed memory and to pass a pointer to it to the unmanged code? Is it possible to do it as a field in the structure? I have a following idea. Managed code is doing a callback to the managed
|