Display contents of Tag property for all (closed) forms in the db

P

Pete

Re access 2003

I would like to iterate thru all of my (closed) forms in the db and display
their name and the contents of the Tag property. I have tried the following,
but get the error:-
Object doesn't support this property or method

Public Sub CheckFormTags()
Dim frm As AccessObject

For Each frm In CurrentProject.AllForms
Debug.Print frm.Name, frm.Tag
Next
End Sub

I this possible, without having to open every form first?

Many thanks.
Pete.
 
T

Tom van Stiphout

On Thu, 13 Aug 2009 05:19:01 -0700, Pete

I don't think so. Even tools like Rick Fisher's "Find and Replace" do
that.

-Tom.
Microsoft Access MVP
 
P

Pete

Many thanks for the reply Tom.

Tom van Stiphout said:
On Thu, 13 Aug 2009 05:19:01 -0700, Pete

I don't think so. Even tools like Rick Fisher's "Find and Replace" do
that.

-Tom.
Microsoft Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top