| Thread | Last Post | Replies |
|
| exception handling | 15 May 2006 16:11 GMT | 3 |
I'm developing a com object (later used by a mfc c++ application) in C#. The result is a dll that the C++ application loads and from which istantiates forms, objects etc etc sometimes C# code throws an exception and c++ code gets killed.
|
| using a VC++ DLL function in a C# ASP.NET webservice | 15 May 2006 11:27 GMT | 8 |
my webservice is using a WIN32 DLL which has a function within a Class. i am putting in the DLL IMPORT and specifying the entrypoint in the webservice.. however the Webservice always seems to NOT receive the value from the
|
| .NET and COM interop. VS2003 & VS2005 difference. | 15 May 2006 09:39 GMT | 1 |
I've implemented a simple .NET component exposed to COM (through CCW I guess) the point is that exactly the same code compiled using 1.1 Framework works perfect with Excel VBA, while recompiled on 2.0 Framework causes "File or assembly name <xxx>, or one of its dependencies, was ...
|
| VS2003 & VS2005 Side-by-Side Issues | 15 May 2006 03:19 GMT | 5 |
Hey All, I have a Word 2003 addin that was created under VS2003. I recently installed VS2005 on my machine. When I try to run the addin inside of VS2003, it just launches Word and
|
| VS2003, VS2005 and AddIn not Being Loaded | 15 May 2006 03:19 GMT | 1 |
I have both VS2003 & VS2005 installed. I am trying to edit an MS Word AddIn built in VS2003. I have added the winword.exe.config file which allows the addin to launch MS Word without crashing when running inside of VS2003. However, my code isn't being hit. I have put ...
|
| .NET and IE Favourites | 15 May 2006 00:26 GMT | 4 |
I've been trying to use c# to read .url files. Yes, I've read other post, and yes, I've read Mattias and Eduardo Morcillo's posts, but nothing. The code below is an amalgam of all those posts (and I've tried many other variations...), but no joy. The code runs, throwing no
|
| Cross-apartment COM interface marhsalling | 12 May 2006 17:55 GMT | 17 |
I couldn't find anything about this aspect in .NET. Theory is all good, but in practice things are different. I have two threads located in sepparate STA apartments in the same process. I tried using a COM interface created by one of them in the other, but with little success.
|
| Using COM objects written in managed code from managed code | 12 May 2006 05:51 GMT | 7 |
I've been struggling with this for hours, and I haven't made any progress. I am creating COM objects in c#. My objects will available for use right next to a collection of c++ COM objects. What makes this challenging, is that there are existing applications, both managed and ...
|
| Calling a C++ managed code from C# | 11 May 2006 18:45 GMT | 1 |
I have wrapped an unmanaged C code in a C++ wrapper. When I call the methods in wrapper everything works perfect but when I add a ref to the wrapper within my C# app and call the wrapper's method there I get a File Not found exception:
|
| passing AddressOf value in params array | 11 May 2006 17:03 GMT | 1 |
Anyone know of a way to pass the Addressof <methodname> value in an Object array to ConstructorInfo.Invoke or Activator.CreateInstance as a parameter? Such as: Dim info As ConstructorInfo = ObjType.GetType().GetConstructors()(0)
|
| DLL rights problem | 11 May 2006 16:51 GMT | 3 |
Hello: I have a DLL that must update into a server. I want to make automatic proccess that copy that dll from a directory(Ex: c:\update) to application directory (ex: c:\application). Copy file is easy, but the problem is that copying it does not get the same right access that
|
| VB or C# for COM Interop? | 11 May 2006 13:00 GMT | 4 |
I'm a .NET beginner and I need to write a COM Interop for ASP 3.0. I don't know which language is more advantageous for a COM Interop: VB or C#? I'm reading documentation on both languages and I have a feeling that implementing COM Interop in VB maybe easier. Please advise.
|
| Static methods in interop | 10 May 2006 21:46 GMT | 1 |
Please advise me on how to interop the static (public) methods, fields, properties etc. from C# to VB6. Pointers to any links are greatly appreciated.
|
| .NET connection points without events | 10 May 2006 20:09 GMT | 2 |
I have a COM object and a .NET object that need to talk to each other. The COM object creates the .NET object, but then the .NET object needs to call methods in the COM object. It appears to me that the best way to do this would be via connection points.
|
| MethodInfo.Invoke on unknown method of ActiveX control at runtime | 10 May 2006 18:25 GMT | 1 |
OK so weird scenario but it's what the client wants so here it goes... I have a bunch of ActiveX/OCX controls which I have run through AxImp to generate wrappers. These controls all have a somewhat generic interface and each include a
|