Open objects

seany

Registered User.
Local time
Today, 21:05
Joined
Sep 1, 2003
Messages
53
Is it possible to list the current Reports open?
 
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

Back
Top Bottom