| Thread | Last Post | Replies |
|
| How to use VB2005 .dll Class Library in VB6 ?s | 25 Jan 2007 01:36 GMT | 11 |
I'm trying to use my CLA_Logging.dll (VB.net 2005) in VB6. I have used the following to create a type library... tlbexp cla_logging.dll /nologo /silent /verbose tlbexp cla_logging.dll /nologo /verbose
|
| Warning: Ambiguity between method 'Microsoft.Office.Interop.Excel._Worksheet.Activate()' and .. | 24 Jan 2007 21:42 GMT | 2 |
Excel.Worksheet xls; .. <code to create the worksheet, etc.> xls.Activate(); I get the following warning:
|
| Topmost visible window | 23 Jan 2007 19:45 GMT | 1 |
I am building an application that is similar to spy++. I want the user to be able to click on a 'window' (textbox/combo/etc) and have it highlighted. BUT... the window they click on may share common coordinates with
|
| can I call non-exported unmanaged functions from managed code? | 23 Jan 2007 19:41 GMT | 1 |
I'm writing test automation for a native dll using manage code. I know that I can use Platform Invoke to call exported, native functions from my managed code. What if the native function isn't exported? Can I still call it using
|
| error 800401f9 when retrieving the com class factory | 23 Jan 2007 15:07 GMT | 1 |
I am writing a program to interface with ACT (a crm database ((version 6))) I had this done a year ago. I can't figure out what I did. I have found my old code and it's no longer working. I dont know why. I have since
|
| Register Assembly Error ? | 22 Jan 2007 22:37 GMT | 1 |
Hi All, I'm getting the following error message while trying to re-build my solution (to create the .dll and .tlb files)... "Error 1 Cannot register assembly "I:\DEV\CLA_Logging\CLA_Logging\bin\Release\CLA_Logging.dll" - access
|
| Unable to cast COM object of type 'System.__ComObject' to class type 'mshtml.HTMLDocumentClass' | 22 Jan 2007 16:43 GMT | 1 |
I am trying to read the results of a web page and display them in a web browser control. I am using .NET framework 1.1, though the clients machine has framework 2.0 as well.
|
| How to convert String[] to IntPtr (LPCWSTR) ? | 22 Jan 2007 15:42 GMT | 2 |
Marshal.StringTo... methods convert only one string to unmanged memory. Native method takes LPCWSTR - an array of strings. How to convert string[] to IntPtr ? I couldn't test one my suggestion
|
| COM interop multithreading problem : Unable to cast COM object of type 'System.__ComObject' to interface | 22 Jan 2007 13:47 GMT | 5 |
I have a DirectShow filter which implements a COM interface called IDVBSubtitle. It is defined like this on the C++ side (simplified version used to debug of course, real interface has more methods :) // C19647D5-A861-4845-97A6-EBD0A135D0BF
|
| Trying to Display a non-modal VB6 Form of an AcitveX DLL in C# | 22 Jan 2007 08:46 GMT | 1 |
Hallo NG, I'm trying to display a VB6 6 of an ActiveX DLL in c Sharp. I use therefore the SetParent API function. After this function call I get always the error message "Non-modal forms cannot be
|
| Using .NET dll with vb5 | 19 Jan 2007 14:16 GMT | 2 |
I am having problems with using my dll with vb5 program. I created a simple dll with vb.net 2.0 using vs2005 and tested it first on a vb6 program that I created on the same computer as my vs2005 is. Then I copied the the dll file to another computer and used regasm to
|
| Loading 16 bits dll (ICL icon library file) | 19 Jan 2007 12:41 GMT | 12 |
I'm creating a free Icon library in C# with source code include, it already support .ico/.dll../exe and I'd like to support .ICL format too, I need to load a file .ICL (Icon Library) that basically it is a 16-bit dll and then after that I can extracts and insert icons inside.
|
| Returning pointer to array from C++ COM component to C# | 18 Jan 2007 16:51 GMT | 5 |
I need to use a third party COM component. One of the methods has the idl signature:- HRESULT CalculateHash([in]BYTE* pDataBuffer, [in]long nDataBufferSize, [out, retval] BYTE* pHashResult);
|
| Dsofile with UNC path - ASP.NET | 17 Jan 2007 20:06 GMT | 4 |
I have an exception when i try to open a file (which is located on a shared directory) with dsofile : oDSO = New DSOFile.OleDocumentPropertiesClass oDSO.Open("\\developpement\Doc1.doc", False,
|
| Can you use same interop dll when COM dll version changes? | 16 Jan 2007 20:01 GMT | 1 |
If you use the framework to generate an interop assembly or you obtain a primary interop from the vendor and then use it in your application will it still work if the COM DLL gets updated to a new version without having to recompile with a new interop assembly?
|