hi everybody
havent been here in a while. right I am trying to build an atm machine. now what I am trying to do when the use enter thiere pin, a dashboard would pop up where the user can choose which transaction they want to do, whether is is depositing, withdrawing, making a transfer or just want a balance enquiry or statement.
the error am getting is this. deposit dep = new deposit. I do not understand why I am getting this error. here is the codes that I used.
the error is telling me to create an import for deposit dep = new deposit() why do I need to import
;
private void btn_depositActionPerformed(java.awt.event.ActionEvent evt) {
Deposit dep = new Deposit(); this is where i am getting there error.
dep.setVisible(true);
this.dispose();
}
