http://qs321.pair.com?node_id=1078578


in reply to Re^2: Passing multiple user data GLADE
in thread Passing multiple user data GLADE

Hi

Ok. Then expose the text entry boxes as a global variables like below,

my $GuiBuilder = Gtk2::Builder->new (); $GuiBuilder->add_from_file('test.glade'); my $text_ip_entry = $GuiBuilder->get_object('text_ip_entry'); my $text_ssid_entry = $GuiBuilder->get_object('text_ssid_entry'); ..... sub on_some_click { my $widget=shift @_; my $userData = shift @_; my $text_ip = $text_ip_entry->get_text(); }

Thanks & Regards,
Bakkiaraj M
My Perl Gtk2 technology demo project - http://code.google.com/p/saaral-soft-search-spider/ , contributions are welcome.

Replies are listed 'Best First'.
Re^4: Passing multiple user data GLADE
by hakim-djz (Novice) on Mar 17, 2014 at 17:31 UTC
    Thanks, I got it sorted and updated the post.