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?

link

what does the application do? Does it rely on any external library? Do you have the source code? – shahkalpesh Aug 19 '09 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 '09 at 22:14
feedback

2 Answers

up vote 5 down vote accepted

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
2  
I'd especially look at the MDAC versions. – Jay Riggs Aug 19 '09 at 19:58
Good thought, @Jay Riggs. MDAC was all the same version on both platforms, so that wasn't it. – Cyberherbalist Aug 19 '09 at 22:12
This might help? discuss.joelonsoftware.com/default.asp?joel.3.442955.16 – MarkJ Aug 20 '09 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 '09 at 9:20
feedback

I have VB6 SP6 and I can reproduce this behavior. In a fresh project, put this code into a form. The project runs normally with F5. Right click the project and select Publish then Build Outputs. This generates the error message.

Option Explicit

Public Sub Init()
    Dim blnErrorHandling As Boolean

    If False Then
        blnErrorHandling = True
    Else
        blnErrorHandling = False
End Sub

Now comment out the last four lines:

Option Explicit

Public Sub Init()
    Dim blnErrorHandling As Boolean

'    If False Then
'        blnErrorHandling = True
'    Else
'        blnErrorHandling = False
End Sub

You no longer get the error and the outputs are built normally. I was quickly adding in some error handling to locate the source of a crash and If False Then is perfectly valid. The MDAC checker said all was ok and a reboot didn't solve the problem.

link
You're right that If False Then is valid, but If without End If is not. Your first snippet wouldn't even compile. – mwolfe02 May 6 '11 at 15:12
Jeeze, I've been away from VB6 for so long and in my IDE the Compile on demand was checked. Adding the End If was the solution. Thanks for the answer! – Brian Leeming May 6 '11 at 15:38
feedback

Your Answer

 
or
required, but never shown

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