Tagged Questions
14
votes
8answers
1k views
Reg Free Com with VB6 on Windows 7
I have some .NET code I use from VB6 code. I have always developed this on an XP machine by creating a VB6.exe.manifest file that listed the dependent .NET assemblies.
For example, say my 2 .NET ...
10
votes
4answers
9k views
A Simple C# DLL - how do I call it from Excel, Access, VBA, VB6?
I have a simple class library written in c#.
using System;
namespace TestDll
{
public class Test
{
public string HelloWorld
{
get
{
...
4
votes
1answer
126 views
Preventing COM Name Mangling
I am trying to write a replacement for a VB6 dll that is referenced by another VB6 in c#.net.
For now we can only work on the later and I am having some success with this. Except I have run into a ...
4
votes
1answer
466 views
VB6 App using COM Interop works fine in IDE, but compiled EXE crashes
I am currently working on an app in VB6 that uses COM Interop libraries written in C# using the .NET 2.0 framework.
I used regasm.exe to register the tlb files from the .NET dlls using the /codebase ...
4
votes
7answers
244 views
.NET and VB6: is Interop a viable development strategy?
Is Interop between VB6 and .NET a viable development strategy?
I am working on a VB6 app that interops with some .NET assemblies, but the combination of 'cold-start' and other cohesion problems makes ...
4
votes
3answers
449 views
VB6 application won't shutdown when .net form open. Instead it displays message “Cannot Quit”
I have a VB6 application that uses several components written in .net. The application must shutdown gracefully when windows is shut down. The problem is that if the .net part of the code is ...
4
votes
2answers
2k views
Calling a VB6 method from a .NET DLL
I have a DLL written in VB 6 and another DLL written in Visual Studio 2005 (VB.NET).
Now I want to invoke the method of the VB DLL from my .NET DLL. What should I do for this?
Any thoughts?
4
votes
2answers
992 views
.NET Interop: Using an assembly in the current directory
I'm trying to use a .NET assembly from VB6 via interop without placing it in the GAC and without using the /codebase argument for regasm.exe.
From what I understand, when I run regasm.exe on a .NET ...
3
votes
2answers
74 views
Lost VB6 source code; is it possible to override methods in another object?
I know a company that lost its source code to a VB6 DLL that exposes COM. Is it possible to wrap, or orverride properties, methods, etc of this object to be more modern?
What technology should I ...
3
votes
2answers
140 views
Releasing .NET objects from VB6 code
On .NET Rocks! Show 561, Carl and Richard talked about releasing unmanaged objects instantiated in managed code. If you have to release a COM object that's instantiated in managed .NET code, you have ...
3
votes
1answer
1k views
Excel manipulation from C# - Set ActiveCell?
I'm currently trying to move some VB6 macros into a C# app and I'm having trouble setting the active cell using C#.
In VB6 its simply:
ActiveSheet.Range("L1").Select
Does anyone know what the C# ...
3
votes
1answer
181 views
Using C# assemblies from VB6 code. Some issues
I have a C# assembly, which is regasmed, but is not in the GAC. In my VB6 code, I added a reference to the generated type library (the .tlb file).
Then I instantiate the C# lib in my VB6 code. If ...
3
votes
1answer
333 views
Unexpected Event Behavior When Using VB6 with COM Interop (C#)
We are using a COM Interop (C#) to allow for a VB6 application to send data to a server. Once the server receives the data, the managed code will raise a DataSent event. This event is only fired ...
3
votes
5answers
961 views
Can/how do you host a full VB6 Form in a C# WPF app?
I am currently exploring the option of porting some older VB6 application to WPF with C#. The plan, in phase one, is to port several key forms and not all the application. The theoretical goal is to ...
3
votes
3answers
1k views
Compiling VB6 app w/ .NET interop, only runs if compiled on my machine
I recently developed an interop user control in .NET (Visual Studio 2008, project targetting .NET 2.0) to be used in a VB6 application. The assembly exposes 1 control, 1 class, and a few enums and ...
3
votes
2answers
820 views
Using ,NET Generic List ToArray in a COM Called Wrapper causes access violation, am I missing something?
I'm having a problem when trying to pass an array back to a COM caller.
Basically, I have a generic List of classes, that I want to return to the COM caller, you can't use generics in COM, so it's ...
3
votes
2answers
1k views
raising a vb6 event using interop
I have a legacy VB6 component that I've imported into VS using tlbimp.exe to generate my interop assembly. The VB6 component defines an event that allows me to pass messages within VB6.
Public Event ...
3
votes
1answer
2k views
How can I debug a VB6 project that has a .net interop project which uses an app.config file?
I have a .net interop project that uses an app.config file. When I am running the VB6 project that is using the interop control in Debug mode, the ConfigurationManager cannot find the app.config file. ...
2
votes
2answers
123 views
Accepting a Byte array, vb6 to C# interop
I am doing an application that comunicates vb6 with a cryptographic wrapper. The .net and interop part, up to now, is alright, fully working.
As my client is testing It, I just have a quick question:
...
2
votes
2answers
943 views
Could not load type 'ADODB._Recordset_Deprecated' from assembly 'ADODB, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Look, im facing aproblem, it started to give me some headache because im looking and looking and still not luck.
I have to execute a method of a DLL from C#, this DLL was created like 4 years ago in ...
2
votes
2answers
213 views
Interop: when deploying a VB6 + .NET component, is the .TLB needed?
When deploying a software package containing a VB6 executable and a .NET component, is the .TLB file needed?
If not, would it be sufficient to include the .DLL and have it regasm-ed during ...
2
votes
1answer
142 views
Is it possible to achieve binary compatibility in .NET library?
I have a .NET library visible in COM, and it's called from a vb6 application.
If I add some methods and release a new version (but don't erase or change signatures of existing methods), I would like ...
2
votes
3answers
612 views
VB6 Variant Type to .NET Type
I have some VB6 code that can't be modified easily that looks like this:
Dim cCount as Long
Dim rCount as Long
Dim result()
Set mx = CreateObject("Component.Class")
Dim rtn = ...
2
votes
6answers
294 views
VB6 App + .Net component working as compiled app but not in VB6 IDE
I have a VB6 App that uses a .Net component (via a .tlb reference in the VB6 app) which is working fine when executed as a compiled app, but it produces an error from the VB6 IDE a certain point when ...
2
votes
1answer
539 views
Marshal a list of objects from VB6 to C#
I have a development which requires the passing of objects between a VB6 application and a C# class library. The objects are defined in the C# class library and are used as parameters for methods ...
2
votes
4answers
813 views
.NET Object from VB6 without use of regasm.exe?
The software company I'm working for builds software for schools, and so our client machines are usually locked down in such a way it makes it pretty impossible for us to install anything on it.
Our ...
2
votes
1answer
416 views
C#, VB6 and the Decimal data type
Im writing a C# class library which is going to be used as a proxy between a VB6 application and WCF service.
Some of the WCF service methods use Decimal data types as parameters which Im unable to ...
2
votes
2answers
367 views
In VB6, how do I call a COM object requiring a pointer to an object?
I'm having trouble with a .NET Assembly that is com visible, and calling certain methods from VB6.
What I have found is that if the parameters are well defined types, (e.g. string), calls work fine. ...
2
votes
2answers
3k views
C# to VB6 COM events (“object or class does not support the set of events”)
Really pulling my hair out with this one...
I have a C# project with an interface defined as:
/* Externally Accessible API */
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface ...
2
votes
3answers
155 views
Can I stop a COM dll from displaying forms?
To be more specific:
We have a web service (written in .Net) which utilizes a large number of COM dlls for core business logic (written in VB6). Assume for now that these are sealed libraries.
...
2
votes
2answers
3k views
Return array of objects from VB6 to C# using Interop
I need to return an array of initialized objects from VB6 into C# using interop. My VB function looks like
Public Function CreateMyObjArray(ByVal MaxCount As Integer) As MyObj()
Dim i As Integer
...
2
votes
4answers
3k views
64 bit C# with a 32 bit VB6 COM object
I have a 32 bit in-proc STA VB6 dll. I sadly cannot do anything about this. My C# component greatly benefits from being 64 bit. Is there anyway to call/interface with this 32-bit dll from my 64 bit ...
1
vote
3answers
139 views
Calling vb6 dlls from c#
I have been trying to call a vb6 dll from a C sharp application, without using the registry. I want to use the path of the dll while using it. I am unable to create an object of the class of the vb ...
1
vote
1answer
40 views
Determining interop function caller
I'm exposing a C# class to COM using these attributes:
[ComVisible(true)]
[ClassInterface(ClassInterfaceType.AutoDual)]
[GuidAttribute("2325EBEB-DB5F-4D29-B220-64845379D9C5")]
...
1
vote
1answer
72 views
.net Interop in windows 7 with VB6
I've got a legacy VB6 DLL that I've modified to take advantage of DirectShow when on Windows 7, due to WIA not working well in Win7 for cam capture.
I've incorporated a .NET DLL into the vb6 DLL that ...
1
vote
1answer
220 views
VB6 .NET Interop Arguments Passed As Strings
I have a .NET interface
<System.Runtime.InteropServices.GuidAttribute("0896D946-8A8B-4E7D-9D0D-BB29A52B5D08"), _
InterfaceType(ComInterfaceType.InterfaceIsIDispatch)> _
Public Interface ...
1
vote
1answer
205 views
Stepping through VB6 COM object wrapped by .NET Class
I have a VB6 object that is wrapped by a .NET class. As far as I recall it is possible to step through a VB6 object (compiled as a library) by simply running the VB6 library and inserting a breakpoint ...
1
vote
2answers
54 views
Is it possible to replace early bound module
with newer code written in another language if the interface/GUIDs/etc are the same?
I am trying to do this as is detailed in the cousin post:
Legacy VB6 app replacement.
But I thought I would cut ...
1
vote
1answer
381 views
Raising events in a class library exposed to COM
I'm trying to write a wrapper to a service, which will be used by an existing VB6 project. I've got most of the basic framework working, except for one important aspect: I can reference the wrapper in ...
1
vote
4answers
209 views
How do I use a .NET .DLL file or library in VB6?
I'm just wondering if there is something I should know of when doing this or will it work straight out of the bat as long as the .NET framework is installed on the client?
I ask because when I ...
1
vote
1answer
112 views
In VB6, when referencing a .NET component, why do I have to reference the .TLB file?
In VB6, when referencing a .NET component, why can't I reference the DLL? Why do I have to reference the .TLB file?
1
vote
2answers
713 views
File version vs. assembly version
I have a .NET (FW 2.0) library which is used by a COM (vb6) application and also by a .NET application.
The TLB generated for COM is registered which a version consisting of the first two digits of ...
1
vote
1answer
263 views
Probing .NET Assembly with Registration Free COM/.NET Interop
We have one assembly that is used by the VB6 executable via COM Interop. This assembly uses other .NET assembly (not available for COM). We have defined a .manifest for our VB6 application, so that we ...
1
vote
3answers
167 views
How to speed up 'cold start' of .NET component called from VB6 app
I have a VB6 app which brings up a form by invoking a .NET DLL, but the problem is that this form takes almost 5 seconds to appear when the menu item is first selected in the VB6 app is selected. How ...
1
vote
1answer
62 views
What concerns should I have when instantiating a .NET component in a VB6 application?
I just read through a 2002 article on MSDN called Calling a .NET Component from a COM Component to get a basic understanding of calling .NET objects from VB6 code. However, I still wondering what ...
1
vote
4answers
341 views
.NET interop COM DLL behaves differently in VB6 debugger
I have a .NET v2.0 Dll that exposes a few classes to COM. The assembly is called BLogic.DLL
I'm calling these classes from a legacy visual basic 6.0 application. I can generate and EXE file and if I ...
1
vote
1answer
558 views
Handling events exposed on a .NET class via COM in VB6
Handling events exposed on a .NET class via COM in VB6
My test .NET (class libary registered for interop in compiler settings) code:
Imports System.Runtime.InteropServices
...
1
vote
1answer
65 views
How to upgrade a VB6 app with .NET components
I want to make a change to a VB6 app which consists of a .EXE, no VB6 DLLs but a handful of .NET DLLs.
The interop is achieved by a one of the .NET dlls being referenced by the VB6 app which seems ...
1
vote
1answer
323 views
From VB6 to .net via COM and Remoting…What a mess!
I have some legacy vb6 applications that need to talk to my .Net engine application.
The engine provides an interface that can be connected to via .net Remoting.
Now I have a stub class library that ...
1
vote
3answers
1k views
Converting dllimport from vb6 to c# 3.5
I have some code in VB6 which imports a function from a dll, it uses the byVal and byRef keywords, I want to convert that code into C# 3.5.
Is there going to be a problem with unicode encoding of ...