Log in

View Full Version : 438 object doesn't support this property or method



Imdabaum
01-17-2007, 12:46 PM
I have a form that ultimately loads fine, but through the process of loading, it spits out the error message in the subject line about 8 times. Anyone ever get that? And if so What causes it?

matthewspatrick
01-17-2007, 02:05 PM
Please post the code that is running at launch.

Imdabaum
01-17-2007, 02:10 PM
Private Sub Form_Open(Cancel As Integer)
'Call SetSubFormSizes
' Me.chkShowAll.Value = 0
Me!chkShowAll.Value = 0 ' changed to (!) instead of (.) - 26 Sep 2000 - Ruth Radmall

Select Case chkShowAll
Case True
'Show both active and inactive
Me.FilterOn = False
Me.Requery
Case False
'Show only active
Me.FilterOn = True
Me.Filter = "Active = True"
Me.Requery
End Select
End Sub

Imdabaum
01-19-2007, 02:07 PM
I deleted many of the subforms and am re-applying them one at a time to see if it's a problem with the sub forms. Hopefully I'll find the answer.