Help for this page

Select Code to Download


  1. or download this
    # ... lots of stuff
    $entry = new Gtk::Entry(8);
    ...
    $button->signal_connect( "clicked", \&savethings, $entry);
    
    # ... lots of more stuff :-)
    
  2. or download this
    sub savethings {
        # here we receive the entry-widget (and the save-button, too)
    ...
        # save things 
        # ...
    }