Which Layout Manager is best
Hello every body
i want to know about which layout manager is best for designing a form for an application. i dont know much about layout managers right now im using gridlayout manager it makes a form but not much beautiful and good lookin plz help me which layout is suiteable for form designing....
zerocoool
[330 byte] By [
zerocooola] at [2007-11-26 15:29:54]

# 2
Yup, horses for courses.
The one I use most by far, though, maybe 90% of the time, is BorderLayout. About 90% of the remaining times I use one of my handful of custom layouts, which are generally just more useful variations of other layouts (eg one like BorderLayout which allows multiple components in each region, and one which stacks components vertically).
In general, though, I only ever use fairly simple layouts. Very rarely I'll use TableLayout (a third party layout manager); never GridBagLayout. Never found much if any need for GridLayout or SpringLayout either.