What is the code at the failure point?
It generally means that an Event procedure has been changed,. Either the visible code has been change by the programmer, or the hidden code of the object has been change - e.g. by an update to the .OCX or .DLL.
This will give the error because the button Click event does not have a parameter
Private Sub Command1_Click(i As Integer)
MsgBox "Hello"
End Sub
Main Topics
Browse All Topics





by: VBClassicGuyPosted on 2009-09-24 at 12:33:59ID: 25416903
Is it possible you declared an API call and made a typo or left out a passed argument? Or possibly aliased it and used the wrong name?