Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    $mw->geometry("+100+50"); # +X co-ord +Y co-ord
    
    MainLoop;
    
  2. or download this
    use strict;
    use warnings;
    ...
    $main->geometry("+100+50"); # +X co-ord +Y co-ord
    
    MainLoop;