
Runtime error 424: Object required
You may not have declared one of the object variables as an object. You can
get this error with the following code:
Sub Junk()
Dim X as Long
Y.Height = 250
...
Since VB will implicitly declare Y as a Variant, treating it as an object
(by trying to access a non-existent property) causes error 454.
Quote:
>Is anybody familiar with this error. MS online support only makes
>referance to an EXCEL macro calling VBA code.
>I get it in an access97 module that compiles fine but won't get past the
>first If statement without this error message.