Diff for /FM2SQL/Attic/FM2SQL.java between versions 1.14 and 1.15

version 1.14, 2004/01/28 12:22:35 version 1.15, 2004/02/10 12:52:30
Line 117  public class FM2SQL extends JFrame imple Line 117  public class FM2SQL extends JFrame imple
     box2 = new JComboBox();      box2 = new JComboBox();
     box3 = new JComboBox(new String[] { "jdbc:fmpro:http://141.14.237.74:8050", "jdbc:fmpro:http://localhost", "jdbc:postgresql://foxridge/test" });      box3 = new JComboBox(new String[] { "jdbc:fmpro:http://141.14.237.74:8050", "jdbc:fmpro:http://localhost", "jdbc:postgresql://foxridge/test" });
     box3.setEditable(true);      box3.setEditable(true);
       box3.setFont(new Font("Times New Roman",Font.PLAIN,12));
     box4 = new JComboBox(new String[] { "jdbc:postgresql://foxridge/test", "jdbc:postgresql://erebos/test1" });      box4 = new JComboBox(new String[] { "jdbc:postgresql://foxridge/test", "jdbc:postgresql://erebos/test1" });
     box4.setEditable(true);      box4.setEditable(true);
     box4.addActionListener(this);      box4.addActionListener(this);
       box4.setFont(new Font("Times New Roman",Font.PLAIN,12));
     table = new TableComponent();      table = new TableComponent();
     box = new JComboBox(tables);      box = new JComboBox(tables);
     box.addActionListener(this);      box.addActionListener(this);

Removed from v.1.14  
changed lines
  Added in v.1.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>