Ask your own question, for FREE!
Mathematics 17 Online
OpenStudy (anonymous):

here are some diagrams

OpenStudy (anonymous):

OpenStudy (anonymous):

import javax.swing.*; import java.util.Scanner; import java.io.*; import java.awt.*; import java.awt.event.*; public class DisplayFrame implements ActionListener, WindowListener{ JFrame frame1,frame2; JButton b; JLabel l2,l3,l4,l5,l6,l7,l8,l9,l10,l11; public DisplayFrame(JFrame parent){ frame1 = parent; frame2=new JFrame("SEARCH WINDOW"); frame2.setSize(740,674); frame2.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame2.setLocationRelativeTo(null); frame2.setResizable(false); b = new JButton("Go Back"); b.addActionListener(this); frame2.addWindowListener(this); frame2.add(b); frame2.setVisible(true); } public void actionPerformed(ActionEvent event) { if(frame1 != null) { frame1.setVisible(true); frame2.dispose(); } else {JOptionPane.showMessageDialog(null, "No Main Frame exists.");} } public void windowClosing(WindowEvent x) { if(frame1 != null) { frame1.setVisible(true); frame2.dispose(); } else System.exit(1); } public void windowOpened(WindowEvent x){}; public void windowClosed(WindowEvent x){}; public void windowActivated(WindowEvent x){}; public void windowDeactivated(WindowEvent x){}; public void windowDeiconified(WindowEvent x) {}; public void windowIconified(WindowEvent x){}; }

OpenStudy (anonymous):

math sure looks different nowadays...

OpenStudy (anonymous):

its my coding work.... a single java class

OpenStudy (anonymous):

dude its coding and diagrams stuff

OpenStudy (anonymous):

dude, i can see that... what's it doing in the math section?

OpenStudy (anonymous):

i just closed it.... it was for display guyz want to see this....

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!