in reply to Changing a MS-Access report's RecordSource property
This way you can see how many reports are returned, and use them from the array. I have found that some of the office COM objects have odd collections and i end up having to use indexes that don't seem correct to the non-Gatesian mind.use Win32::OLE qw(in); # ... my @reports = in $access->{Reports}; printf("Found %d reports\n",scalar(@reports));
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Changing a MS-Access report's RecordSource property
by Grygonos (Chaplain) on Jun 24, 2003 at 19:58 UTC |