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