Why when I press the button it doesn't do anything?. It won't go to the next frame I want on a certain condition I put
if(e.getSource()==btn2)
{
if (txt5.getText=="20")
{
Accept a = new Accept();
a.setAccept();
dispose();
//}
if (txt5.getText=="5")
{
Reject a = new Reject();
a.setReject();
dispose();
}
if(txt.getText=="10")
{
Reserve a = new Reserve();
a.setReserve();
dispose();
}
}