BuyerWindow.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.dx.sql.dataset.*;
  5. import com.borland.dbswing.*;
  6. import com.borland.jbcl.layout.*;
  7. /**
  8.  * <p>Title: </p>
  9.  * <p>Description: </p>
  10.  * <p>Copyright: Copyright (c) 2003</p>
  11.  * <p>Company: </p>
  12.  * @author unascribed
  13.  * @version 1.0
  14.  */
  15. public class BuyerWindow extends JDialog {
  16.   private JPanel panel1 = new JPanel();
  17.   private Database database1 = new Database();
  18.   private QueryDataSet queryDataSet1 = new QueryDataSet();
  19.   private XYLayout xYLayout1 = new XYLayout();
  20.   private JPanel jPanel1 = new JPanel();
  21.   private XYLayout xYLayout2 = new XYLayout();
  22.   private JdbTable jdbTable1 = new JdbTable();
  23.   private TableScrollPane tableScrollPane1 = new TableScrollPane();
  24.   private JButton jButton1 = new JButton();
  25.   private JButton jButton2 = new JButton();
  26.   public BuyerWindow(Frame frame, String title, boolean modal) {
  27.     super(frame, title, modal);
  28.     try {
  29.       jbInit();
  30.       pack();
  31.     }
  32.     catch(Exception ex) {
  33.       ex.printStackTrace();
  34.     }
  35.   }
  36.   public BuyerWindow() {
  37.     this(null, "", false);
  38.   }
  39.   private void jbInit() throws Exception {
  40.     panel1.setLayout(xYLayout1);
  41.     database1.setConnection(new com.borland.dx.sql.dataset.ConnectionDescriptor("jdbc:odbc:gaokaiSQL", "sa", "", false, "sun.jdbc.odbc.JdbcOdbcDriver"));
  42.     jPanel1.setLayout(xYLayout2);
  43.     jButton1.setText("查看订货单");
  44.     jButton2.setText("退出");
  45.     getContentPane().add(panel1);
  46.     panel1.add(jPanel1,  new XYConstraints(190, 154, -1, -1));
  47.     panel1.add(jdbTable1,  new XYConstraints(1, 0, 399, 238));
  48.     panel1.add(tableScrollPane1,  new XYConstraints(192, 117, -1, -1));
  49.     panel1.add(jButton1,   new XYConstraints(8, 255, 103, 22));
  50.     panel1.add(jButton2,  new XYConstraints(282, 255, 110, 23));
  51.   }
  52. }