vote up 4 vote down star
1

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 object '~' failed

This means nothing to me; does anyone have an idea what is going wrong?

flag

what does the application do? Does it rely on any external library? Do you have the source code? – shahkalpesh Aug 19 at 19:13
1  
I do have the source code, which is a good thing. There did happen to be different versions of the supporting libraries, some dating back seven years, others much more recent, though they had all been built at the same time, originally. There had been no change to the underlying code, but different compiles evidently produced enough differences to cause the error. I'm sure it didn't help that the app runs on a workstation and the dll's run on a server. I recompiled all 4 supporting libraries, and then the app itself with these fresh dll's, and that did the trick. – Cyberherbalist Aug 19 at 22:14

1 Answer

vote up 4 vote down check

That can happen when supporting libraries (dlls or ocxs) are not registered properly or the versions of the installed libraries are different (and incompatible) with the version the app was compiled against originally.

Make sure all dependent libraries are registered and the proper version.

You may have to recompile the app to make it work with newer versions of the supporting libraries.

link|flag
2  
I'd especially look at the MDAC versions. – Jay Riggs Aug 19 at 19:58
Good thought, @Jay Riggs. MDAC was all the same version on both platforms, so that wasn't it. – Cyberherbalist Aug 19 at 22:12
This might help? discuss.joelonsoftware.com/default.asp?joel.3.442… – MarkJ Aug 20 at 8:23
MDAC usually throws the error: Provider could not be found If there is a problem with the version, so its unlikely to be the case. – Audioillity Aug 20 at 9:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.