Hi Again ikegami,
I saw this script, but it doesn't tell me how to incorporate it into my code. Below is the code that I have if that helps you:
use strict;
use Win32::OLE;
my ($brio, $Process);
#$brio = '//163.10.50.33/planning/logistics/programs/B_Chicago_wip_que
+ry.bqy';
$brio = 'D:\\Chicago wip query.bqy';
my $ie = Win32::OLE->new("InternetExplorer.Application") or die "Can't
+ start IE\n";
$ie->{visible} = 1;
#$ie->navigate("http://www.perlmonks.org");
$ie->{visible} = 1;
sleep 3;
$ie->navigate($brio);
sleep 5;
$ie->click_button(value => 'Process');
I am sorry if this is too newbie of a question, I am just trying to figure out how to fit it in. Also, I know it is going to give me a pop-up window that is going to ask me for a password, so I may need more help there as well. Thank you for your help.
Regards,
Portree
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.