這種方法顯示在我的應用程序中的新窗口:Access的新框架方法
public void ShowNewCustomerView() {
if (NewCustomer == null) NewCustomer = new NewCustomerView(this);
NewCustomer.setVisible(true);
}
類NewCustomerView有這個方法:
public void ClearFields() {
txtAddress.setText("");
txtCity.setText("");
txtCompanyName.setText("");
txtCustomerNumber.setText("");
txtOrganisationNumber.setText("");
txtPhoneNumber1.setText("");
txtPhoneNumber2.setText("");
txtPostalCode.setText("");
txtReferenceName.setText("");
}
我怎樣才能前行運行方法:
NewCustomer.setVisible(true);
添加此:
NewCustomer.ClearFields();
...不起作用......這是爲什麼?
這是什麼錯誤,我得到: 找不到符號(方法ClearFields()) 類:javax.swing.JFrame中
但我創建NewCustomerView的新實例延伸的JFrame?對?
它不工作?這些字段中是否有文字內容? – 2010-01-04 14:14:38
更新後的帖子,看看爲什麼以上... – Johan 2010-01-04 14:17:07
對不起,與編輯賽車,想做一個小編輯在你身上 - 所以顯然不檢查併發編輯... – Esko 2010-01-04 14:18:38