Hi, I´ve been trying to fit tabs in multi rows, just like System Properties in Windows Control Panel does, for instance. I´ve been using RowLayout and wrap properties, but I haven´t had success. I´m sending the code below, I know if I were using buttons, it would work... Could anyone help me? Thanks!
public static void main (String [] args) { Display display = new Display (); final Shell shell = new Shell (display); final TabFolder tabFolder = new TabFolder (shell, SWT.BORDER);
RowLayout rowLayout = new RowLayout(); rowLayout.wrap=true; rowLayout.pack=false; rowLayout.type = SWT.WRAP;