Help for this page

Select Code to Download


  1. or download this
        $Inputfield->bind("<Return>", \&Say_Click);
        $Inputfield->bind("<Control-Return>", \&Msg_Click);
        $Inputfield->bind("<Tab>", \&completeName);
    
  2. or download this
        $Inputfield->bind("<Control-u>", \&clearentrybox);
    
  3. or download this
    ######################################################################
    +##########
    #
    ...
    sub clearentrybox {
        $Inputfield->delete(0,'end');
    }