philbullock1223
Registered User.
- Local time
- Today, 16:00
- Joined
- Dec 31, 2011
- Messages
- 55
When I close a form I would like to refresh all open forms. I am using the code below, however I am getting the error message "Object Doesn't support this property or method" Error: 438 on the line dbs.AllForms(i).Refresh. The isloaded and count work fine.
Code:
Public Function FormRefresh() As Boolean
Dim obj As AccessObject
Dim dbs As Object
Dim i As Integer
Dim intFormCount As Integer
Set dbs = Application.CurrentProject
intFormCount = dbs.AllForms.Count - 1
For i = 0 To intFormCount
If dbs.AllForms(i).IsLoaded = True Then
[COLOR=red]dbs.AllForms(i).Refresh[/COLOR]
End If
Next
End Function
Last edited: