Ok, so I've been pulling my hair out over this all day. I cannot get my panels to resize. I add a panel to anything.. a frame, a content pane, and It wont .. "force" setBounds for some strange reason.
Container pane = window.getContentPane();
JPanel calendarPanel = new JPanel();
pane.add(calendarPanel);
calendarPanel.setBounds(0,0, 320, 335);
note that window is of JFrame. Any suggestions to sizing a panel would be appreciated!