Tagged Questions
0
votes
2answers
34 views
passing multidimensional array from asp to vb6 dll
I have tried every help available on all other relative topics, but nothing sorted out the issue , Code is as below
VB6 (DLL Code):
Public Function enterorder(vals() As Variant, ordhdr() As Variant) ...
0
votes
1answer
54 views
Assigning an array of custom type from a function return
I've constructed a C# DLL which uses a custom object (called PropertyObject) to store some data. I can pass this through to VB6 and use it fine. However, I have a function which returns an array of ...
-1
votes
1answer
72 views
VB6 create class object [closed]
Ok, forgive me if my question is redundant or stupid to some, but I have been trying to accomplish something for 2 weeks with no success.
I have a dll that controls a tuner card. All works with tuner ...
3
votes
1answer
87 views
VB6 - releasing only a few DLLs having heavy dependency without breaking any references
I have to release a few changes in selected DLLs (simple changes internal to methods - nothing that breaks the compatibility according to this)
So the generally accepted method is to maintain the old ...
3
votes
3answers
168 views
Debug C#.Net DLL Project from VB6 DLL project
I have three projects,
One is a VB6 project which compiles to an EXE.
Another is also a VB6 project, which compile to a DLL.
And the last one is a .Net (2010) project which compiles to DLL.
The DLL ...
0
votes
1answer
102 views
Microsoft MapPoint 18.0 object library in VB 6.0
I am using Microsoft MapPoint 18.0 object library as a reference in VB 6.0 . After creating an object and passing the address parameters , the program doesnt return any latitude,longitude data for any ...
0
votes
1answer
155 views
how to do array of struct in c# like an type in vb6 using marshal
Sorry if I did not explain well. The dll is not written in VB, is written in machine language, you can actually access the dll from vb6 delphi 7 and c + +. The connection method "PBusConnectEx" works ...
0
votes
1answer
120 views
C++ DLL crashes when called from ActiveX DLL running under IIS with Multpile Users
I have a project where an ActiveX DLL written in VB6 is calling a C++ DLL. The ActiveX DLL is loaded through IIS 7 via an ASP "CreateObject" call.
Everything works perfectly when only a single web ...
1
vote
1answer
154 views
Using GetObject() with vb6.0 in a dll
i'm using a method to get all usb extern insert in a pc. I use a function write in a vb6 and i create a dll. Now i want use the dll in a c++ program but i have an error about the getObject() function. ...
4
votes
2answers
62 views
Why would VB6 compiled application require VB5 VM?
I have upgraded a VB5 product to VB6 and produced an executable from the VB6 IDE. It will not execute properly without the presence of MSVBVM50.DLL. Without it it generates the following error:
...
0
votes
3answers
539 views
File not found when loading dll from vb6
I am declaring and calling a dll function using the following syntax in VB6:
'Declare the function
Private Declare Sub MYFUNC Lib "mylib.dll" ()
'Call the function
MYFUNC
Calling the function ...
1
vote
1answer
110 views
In VB6, do I need to call SysFreeString on strings allocated with SysAllocString?
I have a VB6 app which uses a C++ COM DLL and BSTRs are passed between the two. I return BSTRs from the C++ DLL with return ::SysAllocString(L"example");.
Do I need to call SysFreeString on such a ...
0
votes
2answers
323 views
How to create a wrapper DLL/Type Library in VB6?
In my previous question, I asked why I kept getting the error message bad DLL calling convention when trying to call functions from a DLL. The general consensus was that I needed to change the calling ...
0
votes
3answers
294 views
What's is the VB6 equivalent of a C++ char array?
I'm trying to call a DLL written in C++ from a VB6 application.
Here's the C++ example code for calling the DLL.
char firmware[32];
int maxUnits = InitPowerDevice(firmware);
However, when I try to ...
0
votes
1answer
309 views
Trying to call a C DLL from VB. Can't get one of the parameters working
Trying to set up a USB power strip.
Here's the documentation:
Initializes the Power USB API.
Name: InitPowerUSB
Parameters: model:returns the model number(1:basic, 2:digIO, 3:watchdog, 4:Smart), ...
-1
votes
2answers
214 views
Use global variables inside dlls in vb6
I have a dll where i would like to access the global variables of the Project.
How can this be done in VB6?
3
votes
2answers
395 views
VB6 - Declaring and calling C DLL with pointers
I have an old C DLL I use to call from Ruby, but now I need to call it from VB6 and I can't figure out the correct way to do so.
Here is the header for the function I need:
int Decrunch(const BYTE ...
1
vote
1answer
197 views
Installing VB6 application and dlls using .net windows installer
How can I install a VB 6.0 application and it's related DLL files by creating a .Net(4.0) windows installer ?
1
vote
1answer
3k views
Class MSComctlLib.[ListView|TextBox|ect] of control controlName was not a loaded control class
This error is from a machine compiling a vb6 dll which suddenly stopped working and used to work fine.
I've seen this on the net a lot the solutions that i could find and were relevant to me.
...
0
votes
1answer
196 views
Registering a .Net assembly/dll from vb6
I have to make a vb6 application that registers a .Net assembly (using regasm.exe) without the UAC permission problem.
If I do it by launching a shell command from vb6, I don't have the administrator ...
0
votes
1answer
251 views
How to call VB6 DLL from another machine (DLL as a service)
I have a vb6-mysql client-server desktop application which is distributed as a setup file.
It uses DLL all logical operations as well as database operations. The EXE and the DLL are installed in the ...
0
votes
2answers
461 views
Can vb6 dll use a .net com visable dll that is in the gac
I have a .Net COM visible dll and a VB6 dll. I registered the .Net dll on the GAC and registered the VB6 dll. My question is can the VB6 dll reference the .Net dll that's in the GAC. If yes, how can ...
1
vote
1answer
139 views
How to centralize a .net dll (com interop) that is referenced by a VB6 dll
I was given a requirement from a VB6 programmer (yes they still exist). There exists a vb6 application that uses a vb6 dll, this dll now uses a .net dll which inturn uses another .net dll. Now my ...
0
votes
1answer
265 views
How to make the methods in third party dll visible in vb6?
I have my C#.net class library(MyLib.dll). MyLib.dll is calling other third party dll(Other.dll) file which is added through reference to my class library(MyLib.dll).
Now the problem is that ...
0
votes
1answer
161 views
Will having two different versions of a DLL cause issues?
I have a vb6 program that needs to use MSOLAP80.dll to display its pivot tables properly. But because MSOLAP90.dll has some compatibility issues with this I cannot use MSOLAP90.dll and still have the ...
1
vote
2answers
299 views
.net activex dll works only if in same folder as application (VB6) consuming it
we have an ActiveX DLL built in C#; the DLL is used in a VB6 application (and it will be also consumed by a classic ASP application).
The DLL is a C# Class Library Project with
class and interface ...
1
vote
1answer
450 views
32bit dll used by VB6 program doesn't work in 64bit Win 7
1) a 32bit dll is placed in C:\Windows\SysWOW64
2) Registered using regasm.exe
3) While compiling, i set the target cpu to x86
I can add reference in my vb6 program but when i try to call the ...
2
votes
3answers
419 views
Non-activeX DLL in a VB6 application fails to load in Outlook 2010
I have a VB6 app that utilizes a non-activeX DLL (non-registering).
It's declared via the classic Public Declare Function "Function Name" Lib "Library.DLL" syntax.
On my dev machine (XP) it works ...
3
votes
2answers
304 views
C++ DLL only reading first char of a string contained in a safearray
I'm trying to figure out how to pass a user defined structure from a VB6 application to a C++ DLL.
Here's a sample of my VB6 code :
Private Type ObjetVB
Rank As Integer
Id As String
...
2
votes
3answers
161 views
What vb6 type is ABI-compatible with std::vector?
I've been writing a DLL in C++, now I must call this DLL from a VB6 application.
Here's a code sample from this DLL :
#include <vector>
#include <string>
using namespace std;
void ...
0
votes
2answers
205 views
Create a .dll that references another .dll
I have created a .dll in .Net for a coworker to include in his VB6 project. After a lot of head scratching we finally got the .dll referenced from the VB6 project and were able to create instances of ...
4
votes
1answer
606 views
C# wrapper for importing .dll, “Attempted to read or write protected memory”
After a mountain of research and experimentation, I still can't figure out an issue I'm having with accessing un-managed functions from an external library.
Quick relevant backstory: I wrote an ...
0
votes
1answer
340 views
C# P/Invoke embedded VB6 DLL resource: ActiveXObject “Unable to find an entry point named 'FunctionName' in DLL 'DLLName'.”
I'm trying to create a C# wrapper DLL for a VB6 DLL, then use that wrapper in a web page as an ActiveXObject, but I'm getting this error when calling ClassTesting():
Unable to find an entry point ...
0
votes
0answers
167 views
ChilkatXML ActiveX DLL registered but failing
I have an old legacy VB6 application that uses the free ChilkatXML ActiveX DLL extensively. I recently installed this application on a customer's PC – running 64 Bit Win7 (which it usually runs okay ...
0
votes
0answers
51 views
Explaination pertaining to duplicate .dll files
I' am currently in the process of launching a VB6 database that works in conjunction with Jet DAO (old-school I know).
The program basically operates as both a calendar, as well as a program that ...
2
votes
2answers
974 views
VB6 missing dll
I developped a vb6 program then I build an installation wizard with visual studio interdev.
I used "dependency walker" and "process explorer" to find out the missing DLLs but there is always a ...
2
votes
1answer
522 views
VB6.0 call a Sub written in a BAS Module from a Class Module CLS not working
I am writing VB6.0 projects (DLL with COM+) starting from previously written code.
I have a "main" Class Module CLS file with "main" Functions, and the Process flow etc.
I have also a "side" Module ...
1
vote
2answers
546 views
Can't create object from VB6 COM DLL using VB6 program
I have a VB6 COM DLL that was developed on a WinXP 32bit system. It works fine on that PC from C#, VB6, and Python applications. I am testing the DLL on another WinXP 32bit system and on Win7 32bit ...
0
votes
2answers
539 views
Debugging Com-Visible DLL for VB6 App
I'm updating an app that was written in VB6. I want to write the New code in VS2010 and keep it in a DLL. But I cannot figure out how to Debug the DLL code. I can get it to step into the DLL code from ...
1
vote
1answer
320 views
Passing const wchar_t* and cont char* from VB to C++ DLL
Following is the method which I am exporting from my DLL
const wchar_t* _stdcall EncryptAES(const wchar_t* value, const char* key)
I want to access this method from VB 6.0, kindly guide me so that ...
0
votes
0answers
179 views
How to retrieve VB6 DLL function's returned byte array in Python?
My VB6 DLL has a sub that modifies a byte array (a byref parameter). How do I pass in this argument in Python? I used create_string_buffer() and pass it byref(), but I get the exception: 'objects for ...
1
vote
1answer
401 views
using vb6 dll in .net desktop application on 64 bit windows 7
I got a problem with old vb dll that I use in my Desktop .net 3.5 application. I recently got a new computer that runs 64 bit windows 7 while the old one was 32. And I'm getting this exception when ...
0
votes
1answer
291 views
“standard” dll created in vb6 gives access violation when called in python
I created a "standard" dll using vb6 via the hack in: http://windowsdevcenter.com/pub/a/windows/2005/04/26/create_dll.html?page=3. Let's call this myVB6dll.
A function in myVB6dll (call it ...
0
votes
3answers
598 views
VB6 dll call to win32 C function
I need to write some functions in C for someone else's VB6 project (that being outdated is beyond the scope of this question).
During initial tests, I could not get the calls to work. I have supplied ...
1
vote
1answer
2k views
Using a .Net DLL in Microsoft Access VBA
Ok so I have an assembly, written in C#, using Visual Studio 2010.
This Assembly contains one class, which contains one method which returns the word Result, the code is below:
using ...
0
votes
2answers
305 views
VB6 .dll in ASP.NET Web Service project
I got a strange problem recently. I have some VB6 .dll that I must use in my ASP.NET Web Service project. When I test the .dll in Console application - all works fine - I create an object and can use ...
3
votes
2answers
661 views
Circumventing vb6 binary compatibility [closed]
This is more or less an academia question to help me better understand this process... not so much a request to figure out how to get around binary compatibility so no need to explain why I shouldn't ...
4
votes
4answers
2k views
Resetting project compatibility in vb6
When we break compatibility in a vb6 dll I have to do the following:
Set to no binary compatibility
Recompile
Set compatibility again
Remove reference to changed dll from all projects that use it
...
2
votes
1answer
338 views
in vb6, how do I retrieve a char* parameter from a C dll?
I am calling a C dll from my VB6 application. The dll has a function call signature as follows.
void WINAPI geterrstr(char* foo);
where foo is a string that has to be returned.
In my VB6 ...
0
votes
1answer
2k views
Debugging VB6 dll from VB6 exe
I have a VB6 program that calls a VB6 DLL which in turn calls another VB6 DLL. When I execute the calling program there is an application error which I am unable to pinpoint so I researched how if it ...

