super(parent, modal);
setTitle("Open Customer Accounts");
setLayout(null);
addNotify();
resize(insets().left + insets().right + 309,insets().top +
insets().bottom + 109);
setBackground(new Color(12632256));
{ // ID
id_label = new Label("Customer ID:",Label.RIGHT);
id_label.reshape(insets().left + 24,insets().top + 12,100,24);
add(id_label);
id_field = new TextField();
id_field.addTextListener(this);
id_field.reshape(insets().left + 144,insets().top + 12,100,24);
add(id_field);
}
{ // buttons
ok_button = new Button("OK");
ok_button.addActionListener(this);
ok_button.reshape(insets().left + 72,insets().top + 60,60,24);
ok_button.enable(false);
add(ok_button);
cancel_button = new Button("Cancel");
cancel_button.addActionListener(this);
cancel_button.reshape(insets().left + 156,insets().top + 60,60,24);
add(cancel_button);
}