Help for this page

Select Code to Download


  1. or download this
    system("start $SelectedAppURL") if $^O =~ /win/i;
    
  2. or download this
    use HTML::Display;
    my $browser = HTML::Display->new();
    $browser->display(location => $SelectedAppURL);
    
  3. or download this
    use Win32::OLE;
    my $browser = new Win32::OLE 'InternetExplorer.Application';
    $browser->Navigate($SelectedAppURL, 0, 'xyzzy');
    
  4. or download this
    use Win32::FileOp qw(ShellExecute);
    ShellExecute($SelectedAppURL);