We use Access 2000 Tag Property to keep track of form versions. I want to compare every form's Tag property with a linked table of form names and latest versions available ... if a later one is available, delete the existing one and reimport the new one from the master ... sounds simple ....
Can someone just send me a MsgBox loop ... I've got the rest figured out already. I was hoping it would be something simple such as:
---------------------
for each FRM in Application.CurrentProject.AllForms
MsgBox FRM.Name & " Tag Property Value is: " & FRM.Tag.Value
Next FRM
---------------------
This obviously doesn't work. Any help is greatly appreciated --- Thanks, Alan
Can someone just send me a MsgBox loop ... I've got the rest figured out already. I was hoping it would be something simple such as:
---------------------
for each FRM in Application.CurrentProject.AllForms
MsgBox FRM.Name & " Tag Property Value is: " & FRM.Tag.Value
Next FRM
---------------------
This obviously doesn't work. Any help is greatly appreciated --- Thanks, Alan