Help for this page

Select Code to Download


  1. or download this
    #here are some of the options you can specify to pack.
    #learn about the different arguments they take..
    ...
    $emailLab=$mw->label->pack(-anchor=>'',-ipadx=>'',
                               -ipady=>'',-expand=>'', -fill=>'', 
                                -padx=>'', -pady=>'' );
    
  2. or download this
    #using frame widgets, general explanatory non-functional code
    
    ...
    $frame->pack(pack options) or $frame->place(options);
    $frame->Label()->pack();
    MainLoop;
    
  3. or download this