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

Java编程

开发平台:

Java

  1. package uml_gaokai;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import com.borland.dx.sql.dataset.*;
  6. import com.borland.dbswing.*;
  7. import java.awt.event.*;
  8. /**
  9.  * <p>Title: </p>
  10.  * <p>Description: </p>
  11.  * <p>Copyright: Copyright (c) 2003</p>
  12.  * <p>Company: </p>
  13.  * @author unascribed
  14.  * @version 1.0
  15.  */
  16. public class SalesWindow extends JDialog {
  17.   private Database database1 = new Database();
  18.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  19.   private JPanel jPanel1 = new JPanel();
  20.   private JdbTable jdbTable1 = new JdbTable();
  21.   private XYLayout xYLayout1 = new XYLayout();
  22.   private JButton jButton1 = new JButton();
  23.   private JButton jButton2 = new JButton();
  24.   public SalesWindow(Frame frame, String title, boolean modal) {
  25.     super(frame, title, modal);
  26.     try {
  27.       jbInit();
  28.       pack();
  29.     }
  30.     catch(Exception ex) {
  31.       ex.printStackTrace();
  32.     }
  33.   }
  34.   public SalesWindow() {
  35.     this(null, "", false);
  36.   }
  37.   private void jbInit() throws Exception {
  38.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:gaokaiSQL", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  39.     jPanel1.setLayout(xYLayout1);
  40.     jButton1.setText("查看销售信息");
  41.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  42.       public void actionPerformed(ActionEvent e) {
  43.         jButton1_actionPerformed(e);
  44.       }
  45.     });
  46.     jButton2.setText("退出");
  47.     jButton2.addActionListener(new java.awt.event.ActionListener() {
  48.       public void actionPerformed(ActionEvent e) {
  49.         jButton2_actionPerformed(e);
  50.       }
  51.     });
  52.     queryDataSet1.setQuery(new com.borland.dx.sql.dataset.QueryDescriptor(database1, "SELECT vendition_TABLE.VenditionID,vendition_TABLE.GoodsName,vendition_TABLE.GoodsCustomNumber,vendit" +
  53.       "ion_TABLE.CustomerName,vendition_TABLE.VenditionDate,vendition_TABLE.GoodsSize,vendition_TABLE.GoodsP" +
  54.       "rice FROM UML_CS.dbo.vendition_TABLE", null, true, Load.ALL));
  55.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  56.     jPanel1.add(jdbTable1,        new XYConstraints(-1, 0, 336, 263));
  57.     jPanel1.add(jButton1,   new XYConstraints(13, 274, 121, 21));
  58.     jPanel1.add(jButton2,   new XYConstraints(232, 275, 94, 20));
  59.   }
  60.   void jButton1_actionPerformed(ActionEvent e) {
  61.     jdbTable1.setDataSet(queryDataSet1);
  62.     queryDataSet1.refresh();
  63.   }
  64.   void jButton2_actionPerformed(ActionEvent e) {
  65.     dispose() ;
  66.   }
  67. }