From: Mer Gilmartin Date: 2006-10-14T00:01:34+09:00 Subject: Re: Passing the data from a tkEntry widgit to a variable Ok. Sample code for other newbies. @mytext = TkVariable.new('hi this is a test') testtwo = TkEntry.new(Frameone, 'textvariable'=> @mytext) { puts value } Value outputs whats been passed to the TkEntry widgit. I think. Binding I think will allow data into the widgit so possibility into the variable. But I havent got that far yet. -- Posted via http://www.ruby-forum.com/.