| Thread | Last Post | Replies |
|
| Get C# reference to an object from a void C++ method | 13 May 2008 09:28 GMT | 3 |
I have a method in C++: DLLEXPORT void * hunspell_initialize(char *aff_file, char *dict_file) { Hunspell * pMS = new Hunspell(aff_file, dict_file);
|
| Unloading a COM object written in c# | 13 May 2008 00:56 GMT | - |
I think I have the reverse of the problem discussed in the very recent thread "why can't I unload the .NET assembly"? I have a native 32 bit program that calls COM objects. When an object is released the program also calls CoFreeUnusedLibraries.
|
| Converting powerpoint XML (using .net) | 12 May 2008 20:27 GMT | 1 |
Hi, i would like to know if there is a simple way to convert pptx files into ppt. Preferibly i would like to convert PowerPoint 2007 XML files into ppt files. I have a special format that i have an xslt transformer built for which
|
| why can't I unload the .NET assembly? | 12 May 2008 16:32 GMT | 4 |
Greeting, I have a native c++ app inits CLR and loads a .NET assembly. But I don't find a way to unload the assembly and CLR after the use.
|
| AccessViolationException when sinking managed event in unmanaged C | 12 May 2008 08:31 GMT | 4 |
I am trying to sink event thrown by managed code in C++. When the event is thrown the control never reaches unmanaged client. AccessViolationException is raised in managed code at System.RuntimeType.ForwardCallToInvokeMember. I am fighting this issue for a long time now with no ...
|
| Handling events raised in VB6 with C# client | 11 May 2008 22:08 GMT | - |
I have an object that operates on components that may be either .NET or COM components. The components are instantiated using the System.Activator. The instances, once activated, will raise events that will be handled in the activating object. I have the code working fine when ...
|
| Detect if COM Object is installed | 09 May 2008 16:08 GMT | 1 |
Using C#/.NET is it possible to detect if a COM object is installed/registered. For example, I want to check if the Google Earth COM interface is installed. I known one method to do this is to just try to create one of the COM object using the managed wrapper and if it throws an
|
| Can I query a managed process from an unmanaged process? | 09 May 2008 15:27 GMT | - |
I have a managed application and an excel workbook. An instance of the managed app will have at any stage a number of reports running within it. I need a way for the excel sheet to somehow query the currently running instance of the managed app for some information about how
|
| Unable to get the window handle for the 'AxActiveX' control. Windowless ActiveX controls are not supported. | 09 May 2008 10:54 GMT | - |
Hello... I have an MFC ActiveX that I use inside a .NET 2.0 WinForms application. The problem that I have is that if I change the screen resolution to
|
| power and limitations | 09 May 2008 06:32 GMT | 4 |
Hi group Excuse my ignorace please, I´ve seen some posts that insure vc++.net can use freely native code, my ask is what are the limitations of this procedure.
|
| drag-and-drop gc | 08 May 2008 06:54 GMT | - |
A quick question, trying to setup drag-and-drop between mfc code and managed .net [C# - clr version 1.1]. This is the mfc code; COleDataSource * pDataSource = new COleDataSource;
|
| Com to .Net interoperability Arrays | 08 May 2008 04:48 GMT | - |
I have developed a simple COM Server in C#.NET and consuming it in VC++. The COM Server has a function that takes an argument double[] array and another fuction that takes argument string. When I create a wrapper class from the type library in VC++, the class and the ...
|
| Range.Group Method groups columns but rows | 07 May 2008 12:47 GMT | - |
I use the Range.Group Method _______________ When the Range object represents a single cell in a PivotTable field’s
|
| Marshalling [out]SAFEARRAY(HRESULT)* | 06 May 2008 15:51 GMT | 5 |
I have a COM interface function that has an [out]SAFEARRAY(HRESULT) * arrHr parameter. The function is implemented in C# and is called from C++. Unfortunately it doesn't work. I always get an error 0x80131533
|
| C++ IUnknown** to C# | 06 May 2008 14:39 GMT | 1 |
I have an extremely large COM library written in C++ that talks to one of our software package's servers. One of the interfaces has a function with a signature like this: HRESULT CFoo::GetDeviceInfo(LONG DeviceID, IUknown** ppUnk)
|