On Fri, Dec 01, 2006 at 12:25:28PM -0600, Daniel Espinosa wrote: > How can I use a Gtk.ButtonBox? > > I can't use becouse the constructor is "protected", then? > > hbox = new Gtk.ButtonBox (); You need to use one of the two subclasses, either HButtonBox, or VButtonBox: hbox = new Gtk.HButtonBox (); -pete