What can one do to decrease start-up time on GUI?

Any tips on decreasing the start-up time of a GUI application?

[69 byte] By [seanmu13a] at [2007-11-27 11:35:54]
# 1

again?

TuringPesta at 2007-7-29 17:05:36 > top of Java-index,Java Essentials,Java Programming...
# 2

It's a seperate topic, thought more would see it here.

seanmu13a at 2007-7-29 17:05:36 > top of Java-index,Java Essentials,Java Programming...
# 3

You might have had more luck in the Swing section.

Its hard to tell you what to change without knowing how you are

writing the code in the first place.

Are you doing processing / loading in the awt/swing event thread

(whatever its called, lol)?

If so that will slow things down. Look up SwingUtilities.invokeLater()

TuringPesta at 2007-7-29 17:05:36 > top of Java-index,Java Essentials,Java Programming...