Re: [gtkmm] Gtk::Table help



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]