G
Guest
I have dialog form that prompt user to add new item in table. Because this
form is accessable from many forms i want to check "is formName is open
requery combobox" .
code :
Private Sub Form_Close()
If IsLoaded("CursFrm") = True Then
Forms!CursFrm!CarID.Requery
End If
End Sub
then a error happend:
run time error '438'
object doesn't support this type of property or method
what i wrong
form is accessable from many forms i want to check "is formName is open
requery combobox" .
code :
Private Sub Form_Close()
If IsLoaded("CursFrm") = True Then
Forms!CursFrm!CarID.Requery
End If
End Sub
then a error happend:
run time error '438'
object doesn't support this type of property or method
what i wrong