Help for this page

Select Code to Download


  1. or download this
    ### Example 000
    my  $get_args   = {};
    ...
       $usr_input->{title},
       $usr_input->{dept },
    );
    
  2. or download this
    ### Example 001 (compact syntax)
    my $usr_input   =  &TkDataDialog(
    ...
       $usr_input->{title},
       $usr_input->{dept },
    );
    
  3. or download this
    use Tk;
    use Tk::BrowseEntry;
    ...
    use XML::Twig;      ## to support xml-dialog syntax format
    use CSS::Tiny;      ## to support css-like dialog syntax
    use Data::Dumper;   ## only used for debugging and tests