The problems I am seeing are:
1. When I drop a JPanel into the JTabbedPane,
VC will generate the following statement:
jTabbedPane1.add(jPanel1);
when what I need it to do is:
jTabbedPane1.addTab("Panel 1", jPanel1);
2. If I manually change this and file is re-parsed, VC will
treat the panels as part of the main frame and
no longer add them to the tabbed pane.
3. I am also seeing a problem with the
setSelectedIndex, and it is due to call to this
method being performed before the tab panels
are even added to the tabbed pane, so
the index is out of range. This one I can get
around easily by manually calling the method elsewhere.
Thanks for any input you may have,
alberto