Open objects (1 Viewer)

seany

Registered User.
Local time
Today, 18:30
Joined
Sep 1, 2003
Messages
53
Is it possible to list the current Reports open?
 

goppo

Registered User.
Local time
Today, 20:30
Joined
Sep 12, 2005
Messages
18
Yes, use this

For j = 0 To CurrentProject.AllReports.Count
if CurrentProject.AllReports.Item(j).IsLoaded = true then
xx(j)=CurrentProject.AllReports.Item(j).Name
end if
Next j
 

Users who are viewing this thread

Top Bottom