what i want to do is when we are going to type something inside the text field, it should not allowed symbols ...
the code i used
the code i used
Code:
if (evt.getKeyChar()=='&'||evt.getKeyChar()=='@') { jTextField2.setText("");
Comment