From: Lyle Johnson Date: 2006-06-06T00:25:47+09:00 Subject: Re: FXRuby: updating a text label/positioning question On 6/5/06, Nuralanur@aol.com wrote: > I've searched the archive of the mailing lists, and found > a way to add a label , to recalc everything and to create the > whole frame anew... > but I can't change the content of @header in its original place. How could > that be done ? I didn't follow all of that very well, but I think your question boils down to, "How do I change the text of a label?" If that's the question, you change it using the text accessor method, e.g. @header.text = "Contents of file " + new_filename Note that you don't have to create a new label every time, and in fact that's sort-of a wasteful thing to do. Better to just change the text of the existing label widget (as shown here). P.S. Please consider subscribing to the fxruby-users mailing list and posting questions there instead.