UserManagement.java~11~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:5k
源码类别:

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.dbswing.*;
  5. import com.borland.jbcl.layout.*;
  6. import com.borland.dx.sql.dataset.*;
  7. import java.awt.event.*;
  8. import java.sql.*;
  9. /**
  10.  * <p>Title: </p>
  11.  * <p>Description: </p>
  12.  * <p>Copyright: Copyright (c) 2003</p>
  13.  * <p>Company: </p>
  14.  * @author unascribed
  15.  * @version 1.0
  16.  */
  17. public class UserManagement extends JDialog {
  18.   private JPanel panel1 = new JPanel();
  19.   private XYLayout xYLayout1 = new XYLayout();
  20.   private JdbTable jdbTable1 = new JdbTable();
  21.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  22.   private Database database1 = new Database();
  23.   private TableScrollPane tableScrollPane1 = new TableScrollPane();
  24.   private JButton jButton1 = new JButton();
  25.   private JButton jButton2 = new JButton();
  26.   private JButton jButton3 = new JButton();
  27.   private JButton jButton4 = new JButton();
  28.   private JButton jButton5 = new JButton();
  29.   public UserManagement(Frame frame, String title, boolean modal) {
  30.     super(frame, title, modal);
  31.     try {
  32.       jbInit();
  33.       pack();
  34.     }
  35.     catch(Exception ex) {
  36.       ex.printStackTrace();
  37.     }
  38.   }
  39.   public UserManagement() {
  40.     this(null, "", false);
  41.   }
  42.   private void jbInit() throws Exception {
  43.     panel1.setLayout(xYLayout1);
  44.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:gaokaiSQL", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  45.     queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT [user].userID,[user].userName,[user].userPassword,[user].userAddress,[user].userAuthority,[use" +
  46.         "r].userGender,[user].userAge FROM [UML_CS].[dbo].[user]", null, true, Load.ALL));
  47.     jButton1.setText("增加用户");
  48.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  49.       public void actionPerformed(ActionEvent e) {
  50.         jButton1_actionPerformed(e);
  51.       }
  52.     });
  53.     jButton2.setText("修改用户");
  54.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  55.       public void actionPerformed(ActionEvent e) {
  56.         jButton2_actionPerformed(e);
  57.       }
  58.     });
  59.     jButton3.setText("删除用户");
  60.     jButton3.addActionListener(new java.awt.event.ActionListener() {
  61.       public void actionPerformed(ActionEvent e) {
  62.         jButton3_actionPerformed(e);
  63.       }
  64.     });
  65.     jButton4.setText("查看用户");
  66.     jButton4.addActionListener(new java.awt.event.ActionListener() {
  67.       public void actionPerformed(ActionEvent e) {
  68.         jButton4_actionPerformed(e);
  69.       }
  70.     });
  71.     jButton5.setText("退出");
  72.     jButton5.addActionListener(new java.awt.event.ActionListener() {
  73.       public void actionPerformed(ActionEvent e) {
  74.         jButton5_actionPerformed(e);
  75.       }
  76.     });
  77.     getContentPane().add(panel1);
  78.     panel1.add(jdbTable1,              new XYConstraints(-1, 0, 389, 253));
  79.     panel1.add(tableScrollPane1,  new XYConstraints(215, 192, -1, -1));
  80.     panel1.add(jButton1,  new XYConstraints(112, 255, 100, 26));
  81.     panel1.add(jButton4,     new XYConstraints(2, 255, 99, 27));
  82.     panel1.add(jButton5,  new XYConstraints(316, 292, 72, 24));
  83.     panel1.add(jButton2, new XYConstraints(1, 291, 99, 25));
  84.     panel1.add(jButton3, new XYConstraints(111, 290, 104, 26));
  85.   }
  86.   void jButton4_actionPerformed(ActionEvent e) {
  87.     jdbTable1.setDataSet(queryDataSet1) ;
  88.     queryDataSet1.refresh();
  89.   }
  90.   //增加用户
  91.   void jButton1_actionPerformed(ActionEvent e) {
  92.     AddUser adduser = new AddUser() ;
  93.     Dimension dlgSize = adduser.getPreferredSize();
  94.     Dimension frmSize = getSize();
  95.     Point loc = getLocation();
  96.     adduser.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  97.     adduser.setModal(true);
  98.     adduser.pack();
  99.     adduser.show();
  100.   }
  101.   void jButton3_actionPerformed(ActionEvent e) {
  102.     DeleteUser deleteUser = new DeleteUser() ;
  103.     Dimension dlgSize = deleteUser.getPreferredSize();
  104.     Dimension frmSize = getSize();
  105.     Point loc = getLocation();
  106.     deleteUser.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  107.     deleteUser.setModal(true);
  108.     deleteUser.pack();
  109.     deleteUser.show();
  110.   }
  111.   void jButton2_actionPerformed(ActionEvent e) {
  112.     UpdateUser updateUser = new UpdateUser() ;
  113.     Dimension dlgSize = updateUser.getPreferredSize();
  114.     Dimension frmSize = getSize();
  115.     Point loc = getLocation();
  116.     updateUser.setLocation((frmSize.width - dlgSize.width) / 2 + loc.x, (frmSize.height - dlgSize.height) / 2 + loc.y);
  117.     updateUser.setModal(true);
  118.     updateUser.pack();
  119.     updateUser.show();
  120.   }
  121.   void jButton5_actionPerformed(ActionEvent e) {
  122.     dispose() ;
  123.   }
  124. }