I tried searching for documentation on this and found virtually nothing. I must be looking in the wrong place. I have a button used to open another JFrame object. From what I've seen, most folks recommend opening the JFrame using the statement: myFrame.setVisible(true);
When this JFrame opens, there are several SQL statements run which retrieve the data required to make the JFrame usable. I would like to ensure all the data is retrieved and loaded into the JFrame's controls before the JFrame becomes visible to the user. So I thought it would help to know the event sequence, you know, which event is fired first, second, third... So that I can find an event in the chain which enables me to keep the JFrame hidden until everything is ready for user interaction. Thanks for taking the time to reply.