How to makeall the forms invisible
Is there a way to make all the forms invisible in a database regadless of their names and number? During the execution of my code
all the forms are visible to the viewer and i want to make them invisible during the process and visible again after that.I have tried with
Application.Echo False..code Application.Echo True, but the forms continue to appear. If i do not find a shorter means, i will have to
hard code each form separately to make it invisible as Forms![Form1[.Visible = False. What i want is to make all the forms invisible
something like that: for each form in the database, etc.
Is it possible?