Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

How do I launch my browser in Win32 to go to a specified URL?

by httptech (Chaplain)
on Apr 29, 2000 at 21:21 UTC ( [id://9724]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Win32::Process;
    use Win32::Registry;
    
    ...
    Win32::Process::Create($browser, $default_browser,
            "$default_browser "http://www.perlmonks.org", 0,
            NORMAL_PRIORITY_CLASS, ".") || return 0;
    
  2. or download this
    use Win32::OLE;
    
      my $browser = CreateObject OLE "InternetExplorer.Application.1" || r
    +eturn 0;
      $browser->{'Visible'} = 1;
      $browser->Navigate("http://www.perlmonks.org/");
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://9724]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-16 05:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found