Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
layout
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
6 Days Ago
by Neil_brown001
… served correctly and the button is inside the right page
layout
. About the web.config confusion Having two web.config files…
Re: Cannot run exe from asp.net
Programming
Web Development
5 Days Ago
by lennyli
… served correctly and the button is inside the right page
layout
. > > About the web.config confusion > Having two…
Handling Real-Time DOM Sync in SSR React App with Dynamic Nested Routes
Programming
Web Development
2 Weeks Ago
by Neil_brown001
… across dynamic routes. Ensuring context/state doesn't break on
layout
shifts or route reloads. Any insights or architecture patterns would…
Re: dating site layout
Digital Media
UI / UX Design
1 Month Ago
by anryha
Hello, everyone! I'm thinking of signing up for a dating site, but I'm afraid of wasting my time. Does anyone have a positive experience?
Re: dating site layout
Digital Media
UI / UX Design
1 Month Ago
by Dani
I met my husband on a dating app. However, this isn’t really the place to ask this kind of question. This is a programming forum and the discussion revolves around building a dating app, not using one. Also, this discussion is 16 years old.
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… the fold (ATF) and should NOT be lazy loaded. Cumulative
Layout
Shift (or CLS for friends) is where most sites have…
Re: Which Python project should I use?
Programming
Software Development
2 Months Ago
by Reverend Jim
Using wxPython for your GUI elements will make it more portable to other platforms. wxPython also renders the elements in the target platform's native style. Usimg wxGlade (also free) to design the
layout
will make things much easier than doing it all by hand.
Layout
Digital Media
UI / UX Design
16 Years Ago
by cohen
Hey Guys, How do i install a web
layout
??? for example from [url]www.free-css.com[/url] How do i change the images to what i want??? Cohen
Re: Layout
Digital Media
UI / UX Design
16 Years Ago
by peter_budo
… ever format you gone use that it should use this
layout
, plus in the document you tell tags which settings to…
layout
Digital Media
UI / UX Design
15 Years Ago
by cane23
i am having some problems in a 3 column
layout
. the left column contain the links of the various PHP files that i want to execute, however i want them to be executed in the middle column. i am using dreamweaver and using the 3 column fixed template however it is not working. can some one offer some help on this matter please thanks
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by Violet_82
…;//Cancel private JButton helpButton;//Help private FlowLayout
layout
;//
layout
object //panel object of JPanel type private…add( checkBoxesPanel ); add( textFieldsPanel ); add( buttonsPanel ); //
layout
.setAlignment( FlowLayout.RIGHT ); }//end of Gui constructor }//end…
layout manager, which one?
Programming
Software Development
11 Years Ago
by Violet_82
…
layout
;//
layout
object //constructor public Gui(){ super("Align");
layout
= new FlowLayout();//create FlowLayout setLayout(
layout
); //set frame
layout
… "Help" ); add( helpButton ); //
layout
.setAlignment( FlowLayout.RIGHT ); }//end of Gui constructor…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by Violet_82
…Cancel private JButton helpButton;//Help private FlowLayout
layout
;//
layout
object private JPanel checkBoxesPanel;//panel object of…( "Show grid" ); checkBoxesPanel.add( showGridCheckBox ); //
layout
.setAlignment( FlowLayout.LEFT ); //elements in textFieldsPanel xLabel = new JLabel…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by JamesCherrill
… JPanel and its child JPanels. For th JFrame a flow
layout
is OK - it will place the panels left to right… enough room). For the panels you ned to specify a
layout
manager that stacks things vertically - eg GridLayout(0,1) - one…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by JamesCherrill
pack() fits everything together according to the
layout
manager(s) and any other constrains you have specified. Until …'s only so much you can do with a simple
layout
manager like GridLayout - I see you already found the h…, while still retaining the resizability and platform independence that a
layout
manager gives you, you have to go to one of…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by JamesCherrill
… call for when you're not using a
layout
manager. By default, most
layout
managers will make your window "big enough… set a minimum sze for your window then if the
layout
manager comes up with a smaller size it should "…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by Violet_82
thanks for your help guys. @JamesCherrill before I close this thread I would like to pick up on something you said: > setSize is call for when you're not using a
layout
manager. Can you actually draw a GUI without using a
layout
manager? I thought that a
layout
manager had to be used at all times. Thanks
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by mKorbel
Can you actually draw a GUI without using a
layout
manager? I thought that a
layout
manager had to be used at all times. - not you can't, - NullLayout only to supply unwillingness to read the description in (already linked) official Oracle tutorials about How to Use
Layout
Managers
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by Violet_82
… appreciate that the GridLayout, BorderLayout and FlowLayout are very basic
layout
managers, but I think that I am happy to work… a bit more about these before moving to more complicated
layout
like GridBagLayout. I know I could use an IDE and…
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by JamesCherrill
…, but setting minimum sizes are more often honoured by the
layout
managers I happened to use. I didn't keep any… any hard data on this. :) Personally I use GridBagLayout whenever
layout
really matters.
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by Phaelax
For reference, this will help you learn about
layout
betters: http://docs.oracle.com/javase/tutorial/uiswing/
layout
/index.html
Re: layout manager, which one?
Programming
Software Development
11 Years Ago
by JamesCherrill
There is the option of setting the
layout
manager to null and positioning/sizing everything in pixels using `…
Layout Managers... Can I use more than one?
Programming
Software Development
17 Years Ago
by Tyster
… there everyone, Is it possible to use more than one
Layout
Manager in a single GUI interface? I have classes (with… I've only built simple programs that use a single
layout
manager. When I call the setLayout() method on my … What I'm wondering is if its possible to combine
layout
managers in a single GUI. The setLayout method only takes…
Re: Layout Managers... Can I use more than one?
Programming
Software Development
17 Years Ago
by Ezzaral
…, however you can easily create any
layout
you wish by nesting containers with the
layout
that you want for each one. This… with each JPanel containing a few components. Breaking up the
layout
like that gives you a lot of control over the…
Re: Layout Managers... Can I use more than one?
Programming
Software Development
17 Years Ago
by Tyster
…Each container can only have one
layout
manager, however you can easily create any
layout
you wish by nesting containers with… the
layout
that you want for each one.…each JPanel containing a few components. Breaking up the
layout
like that gives you a lot of control over the…
Re: Layout Management
Programming
Software Development
15 Years Ago
by peter_budo
….com/docs/books/tutorial/uiswing/
layout
/using.html"]Using
Layout
Managers[/URL] As for which
layout
is used mostly? Dunno normally…, do not try to arrange all element through one
layout
. Divide it on smaller section on which you apply…
layout
as need it and fit it in main
layout
that will organize these groups …
Layout problem in IE6/7
Digital Media
UI / UX Design
16 Years Ago
by fedegrafo
…. I have a problem with a table in a liquid
layout
. It is ok in FF but It does'nt work… in IE6/7. The
layout
is made by a left column (200px) and a right… data and so it grows in width, It breaks the
layout
. So it'is no more contained in the box. Is…
Layout change by date?
Digital Media
UI / UX Design
16 Years Ago
by chellethecat
I'm working on a
layout
that consists of four individual layouts and CSS files for … find a solid and reliable way to automatically change the
layout
displayed based on the viewer's computer date (for example… on March 19th would display the Winter
layout
, March 20th the Spring one). I had someone suggest the…
Layout Manager problem with Swing
Programming
Software Development
16 Years Ago
by BestJewSinceJC
… and I have a problem. I'm using a card
layout
to flip between multiple windows. Two of these windows are… (as one of the tabs, this JPanel contains the card
layout
) JPanel 2 (this is inside JPanel 1, and contains the… down should be working. So I guess it's the
layout
manager which is stopping things from being resized. Hm.
Layout Management
Programming
Software Development
15 Years Ago
by Stefano Mtangoo
Please help me to expound how to do
layout
management. You may choose any
layout
manager and expound it. I'm doing self teaching most of the time and it is not fun! Please help me ho to arrange. Also which
layout
is mostly used
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC