jobs_ron has asked for the wisdom of the Perl Monks concerning the following question:
And I know how to do this in Word:use strict; use OLE; my $excel = CreateObject OLE "Excel.Application"; my $wrkbk = $excel -> Workbooks -> Open("C:/File.xls"); $excel -> {Visible} = 1;
What is the equivalent for Access? Thanks.use strict; use OLE; my $word = CreateObject OLE "Word.Application"; my $doc = $word -> Documents -> Open("C:/File.doc"); $word -> {Visible} = 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to display an Access database
by GrandFather (Saint) on Jun 18, 2007 at 21:15 UTC | |
by jobs_ron (Acolyte) on Jun 18, 2007 at 23:07 UTC | |
by GrandFather (Saint) on Jun 18, 2007 at 23:37 UTC | |
by jobs_ron (Acolyte) on Jun 18, 2007 at 23:42 UTC | |
|
Re: How to display an Access database
by Util (Priest) on Jun 19, 2007 at 01:02 UTC | |
|
Re: How to display an Access database
by planetscape (Chancellor) on Jun 19, 2007 at 13:21 UTC |