Tagged Questions
13
votes
6answers
787 views
Why is C# null translated as Empty in VB6, instead of Nothing
I have a C# application that reference a VB6 dll. When I pass null from C# into VB6 dll function, the null is translated as value Empty (value) in VB6, instead of Nothing (object). For example:
// ...
10
votes
1answer
1k views
Unload a COM control when working in VB6 IDE
Part of my everyday work is maintaining and extending legacy VB6 applications. A common engine is written in C/C++ and VB6 uses these functions in order to improve performance.
When it comes to ...
8
votes
2answers
355 views
Exposing an ISO C++ class to a VB6 application
I have developed a C++ class to access the software protection dongle on USB. The C++ class has been developed with g++ under Linux, but I can compile it successfully using MinGW under Windows. I have ...
7
votes
4answers
149 views
VB6~C# Com Question
I am trying to mimic an old vb6 dll with a new .net one. The mimicry has to be perfect so that that callers don't know they are using a new .dll.
I have a curiousness though. In VB6 it has the ...
7
votes
2answers
1k views
Windows 7 & VB Classic Code: Any runtime issues?
Microsoft has promised that VB6 code will continue to work on Windows 7, but has anyone noticed any gotchas specific to running VB6 code in the Windows 7 RC?
And for that matter, any issues with COM ...
7
votes
3answers
6k views
What could cause Vb6 run time error 430
I have a COM dll written in vb6. When I try to create a new object of a class module from this dll I get a Run timer error 430: Class does not support automation or does not support expected ...
6
votes
2answers
3k views
GetObject and VB6 ActiveX exe
The VB6 help on GetObject says "You can't use GetObject to obtain a reference to a class created with Visual Basic" (the very last sentence!). My VB6 GUI exposes objects as an ActiveX exe, for other ...
5
votes
1answer
82 views
Hang in COM application with C# plugin
I've got a problem where our application hangs on our customers' machines that I've been on for days now without solving. The problem arises quite randomly from what we've seen, even though that may ...
5
votes
1answer
64 views
How to view VB6 control-level variables in WinDbg?
I have a crash file where I can see that one of my own VB6 user controls is responsible for the crash; i.e. one of its methods is part of the stack trace and I can see the line responsible.
From ...
5
votes
5answers
446 views
Referencing .NET Assembly in VB6 won't work
I wrote a .net assembly using c# to perform functions that will be used by both managed and unmanaged code. I have a VB6 project that now needs to use the assembly via COM.
I created my .net ...
5
votes
3answers
473 views
If I use a Type Library (.tlb) in a VB6 project, do I need to distribute it with the .exe?
If I make use of a Type Library in a VB6 project do I need to distribute the .tlb file (and perhaps even register it?) with the compiled exe on the target computer?
5
votes
2answers
4k views
What does “Method '~' of object '~' failed” mean?
I'm trying to run a legacy VB6 application on my desktop (it doesn't have a user interface, being a command-line app), and when I do, I get a message box saying
Run-time error '4099':
Method '~' of ...
5
votes
4answers
5k views
Can a VB6 component be compiled to 64 bit?
Is there a way to compile a VB6 component into 64 bits?
My feeling is that the answer is "no", but I would like to confirm this.
Please, if you can, paste a link to an authorative source that would ...
5
votes
2answers
927 views
Legacy VB6 COM+ DLL calling into native Win32 DLL — threading issues with STA?
Come across what looks at first sight like an MT-issue, but I'm trying to understand in detail the STA model used by COM+.
Effectively, I have a legacy COM+ component, written in VB6, that calls into ...
4
votes
1answer
91 views
Late binding run-time error in VB6 when creating an object from a .NET assembly
i have a vb6 project that has a reference to a vb.net com library.
the project runs well when i use early binding such as:
Dim b as object
Set b = new myComLib.testObject
when i use late binding ...
4
votes
1answer
118 views
Can I make a function COM Only? (Opposite of <Runtime.InteropServices.ComVisible(False)> )
I have some functions in my VB.NET DLL which I can 'hide' from my VB6 app by using the following:
<Runtime.InteropServices.ComVisible(False)> _
But is there a way to make a function ONLY ...
4
votes
2answers
329 views
Registering a .NET dll for use in VB6 application
I have a DLL I wrote in C# which I want to use in my VB6 application.
In VS2008 the project property "Register for COM interop" is checked, and when I compile the DLL and try to use it on my ...
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
168 views
Calling a Visual Basic DLL in C++, Part 2
This question is a follow up to a previous question (here).
I have acquired a DLL that was created in Visual Basic from a third party vendor(Sensor DLL.dll). This DLL contains functions for talking ...
4
votes
2answers
133 views
Hide Member Without Using Underscore
I have a class written in VB.Net exposed to COM via the ComClass & ComVisible attributes. The class is then made available to VBA via a TLB. In VB6 you could easily mark a member hidden in the ...
4
votes
1answer
285 views
Registration Free COM Interop: The application has failed to start because its side-by-side configuration is incorrect
Background. I've got a COM Wrapper assembly called ComWrapper.dll written in C#, and Visual Basic 6 application called Project1.exe. I've added the Project1.exe.manifest file (contents of which are ...
4
votes
2answers
415 views
Does COM automatically unload DLLs when there are no more object references?
For example, in language X:
let x = CreateOject( "MyProgID" )
x.LateBoundCall()
x.Release() // (or setting x to Nothing in VB-like language, etc)
What happens to the DLL MyProgID lives in? Does ...
4
votes
1answer
130 views
Can .local files be used during VB6 compile to avoid registering COM ocx and dll files
In an attempt to keep my build machine clean can .local files be used during the compile of an application or is there a better way to keep the bloat off the machine.
4
votes
5answers
1k views
How do I use Reg-Free COM for a vb6 dll reference in a .net project?
I've been trying to solve this issue for a long time, and nothing seems to work.
I have a COM DLL written in vb6. I add a reference to this DLL in .net, with the 'isolated' and 'copy local' ...
3
votes
4answers
133 views
Implementing a c# interface that has an event through COM to VB6
I have a VB6 class that needs to implement an interface which I created in C#. I have been able to succesfully implement all of the properties of the interface in my vb6 class over COM, but have not ...
3
votes
2answers
75 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
1answer
259 views
.NET COM Visible DLL vs. Active X DLL
I have a situation where a third party application loads a collection of VB6 Active X DLL extensions. The only constraint for these extensions is that they contain a set of predefined IDispatch ...
3
votes
3answers
263 views
How to use java classes from visual basic 6?
I'm doing a small project in college and my project guide only knows visual basic 6. He is insisting on using only VB6. I'm very good in java and want to use java for the core functionality and VB6 ...
3
votes
2answers
378 views
Return SAFEARRAY of custom interface types to VB6 through COM
Is it possible to return an array of defined interface objects from a C++ COM function (VC6) to a VB6 client? I've scoured the web and haven't been able to come across anything that describes what I ...
3
votes
1answer
180 views
VB6 IDE Is Locking The Loaded Project's DLL
I'm responsible for maintaining legacy VB6 code, and have encountered an annoying problem with regard to the locking of a project's COM DLL. (We'll call it MyProject and MyProject.dll)
When I load ...
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
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
2answers
129 views
Performance of passing data between .Net and COM assemblies
I am in the process of migrating a legacy VB6 app to .Net, however since it is a high-profile business critical application, it is being done piece by piece.
In the interest of improving performance, ...
3
votes
3answers
795 views
Trace not working in a .NET DLL loaded from VB6 EXE
I have a .NET DLL that writes to the Trace. But seems that when I call my DLL from a VB6 EXE the trace is not working.
I have created an myApp.config file in the EXE folder with the trace ...
3
votes
5answers
189 views
Use .NET in VB6 or classical ASP
Duplicate of Calling .NET methods from VB6 via COM visible DLL
Which ways exist to use/call .NET classes/functions/libraries (.net 3.x) in VB6 or classical ASP ?
Has anybody experiences with that ? ...
3
votes
1answer
4k views
COM Add-in for Excel doesn't load when Excel is launched by opening file
Several users have reported that if they launch Excel by double-clicking an Excel file, the add-in will not load. But, if they open Excel via the Start menu (or Quick launch toolbar) the add-in loads ...
3
votes
1answer
4k views
What's the proper source for Windows Common Controls 6.0 component (MSCOMCTL.OCX)?
I'm experimenting with writing ActiveX controls and noticed that I can't seem to create an ActiveX control in Visual Basic (6.0) which features slightly more sophisticated controls. Simple controls ...
3
votes
5answers
495 views
Bizarre VB6 Make Error
I've got a really strange error and any light that anyone can shed on this would be greatly appreciated. We're under the gun (as usual) and I need to find an answer for this quickly.
I made some ...
3
votes
2answers
642 views
Exposing C# struct to COM breaks for VB6 app
Last Updated: 2009-08-11 2:30pm EDT
A few days ago I posted this question about some very strange problems. Well, I figured out what specifically was causing a build on one machine to not run on ...
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
3answers
805 views
Seemingly random crashes with VB.NET and COM Interop
I'm thinking of rewriting a brand new VB.NET application in VB 6.
The application runs under terminal services and makes heavy use of COM.
For some reason, there is random weirdness with the ...
3
votes
3answers
2k views
Buildprocess for ActiveX / COM / VB6 enterprise projects
We have developed a software system using ActiveX/COM (VB6) technology from microsoft. In the last year, i get more and more interested in automated build processes and SCM at a whole. I intensively ...
2
votes
3answers
99 views
Why does COM Interop treat a VB6 Boolean as C# Short?
I have a legacy VB6 application that has the following structure defined:
Public Type DrawDown
Date As Date
Amount As Currency
CapitaliseInterest As Boolean
End Type
An interop assembly ...
2
votes
1answer
69 views
com class library registration
i have created a com class library with vb.net. i have registered the dll with regasm. Then i imported and used it to a vb6 project. I have noticed that if i unregister the library and register it ...
2
votes
1answer
80 views
QueryInterface on a VB6 component returns E_NOINTERFACE in debugger only
I have an interface (ITask) that implemented by a VB6 COM object. I have a C++ COM object that uses the interface, and it generally works fine.
However, when I run the VB6 debugger to debug the VB6 ...
2
votes
1answer
122 views
C# Com Enum and VB6
Hi I created C# Exe Com Server and refer it from VB6 application.
The problem is that all the enums are exposed with "strange name" in the vb app: EnumName_EnumeItem, while reffered from then VB6 code ...
2
votes
3answers
108 views
Subscribe to C# .net Event in VB6
I need to get be able to handle a .net event in VB6. So far i have it set up by making me c# class COM visible. My VB6 object can call methods on it fine but now i need some way to communicate from ...
2
votes
3answers
307 views
COM+ hang when calling a COM object under load
We have some COM+ code written in everybody's favourite language(?) -- VB6. This COM+ component calls into a standard COM component written by a 3rd party which performs calls into a SQL Server ...
2
votes
2answers
149 views
Using IUnknown derived C++ COM object in VB6
I have developed a C++ DLL-based COM object that implements some IUnknown derived interface. How can I use it in VB6? Does VB6 support IUnknown based interfaces, or I need to derive from IDispatch?
...