D
dale
If I want to use the following code I get a run-time error 438. I am
assuming I am missing a reference but do not know which one to include
for this.
Dim obj As Object
Dim db As DAO.Database
Set db = CurrentDb
For Each obj In db.Containers
If obj.Type = acReport Then
obj.Properties("AutoResize") = "No"
End If
Next obj
Any help is appreciated
Dale Brown
assuming I am missing a reference but do not know which one to include
for this.
Dim obj As Object
Dim db As DAO.Database
Set db = CurrentDb
For Each obj In db.Containers
If obj.Type = acReport Then
obj.Properties("AutoResize") = "No"
End If
Next obj
Any help is appreciated
Dale Brown