[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [gtkmm] Gtk::Table help
- From: Ainsley Pereira <gtkmm pebble org uk>
- To: gtkmm-list gnome org
- Subject: Re: [gtkmm] Gtk::Table help
- Date: Sat, 14 Feb 2004 08:09:26 +0000
On Sat, Feb 14, 2004 at 01:01:56AM +0000, Ian Michell wrote:
> // Add Item to table
> l_table->attach(*lusername, 2, 1, 2, 1);
> l_table->attach(*lpassword, 2, 1, 1, 2);
Try
l_table->attach(*lusername, 1, 2, 0, 1);
l_table->attach(*lpassword, 1, 2, 1, 2);
(I'm not quite sure where you want these things in your table.)
The left edge should be lefter than the right edge. The upper edge
should be above the lower edge.
~Ainsley
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]