This works for me on Windows and Solaris (perl 5.8.8)
use strict;
use Tk;
my $mw = MainWindow->new;
$mw->geometry("1200x850");
my $p = $mw->Scrolled('Pane', -scrollbars => 'se',
-width=>'1200',
-height=>'850'
)->pack;
my $listbox1=$p->Scrolled('Listbox',
-scrollbars=>'e',
-exportselection => 0
)->place(-anchor=>'nw',
-x=>"50",
-y=>"150");
$listbox1->configure(-height=>'35',
-width=>'25',
-selectmode => "browse");
$listbox1->insert('end',1..150);
MainLoop();
Is it perhaps because you forgot the MainLoop() ??