Hi
how can i execute a statement if only radio button is checked and Jbutton is click? i know how to use them Individually. i try to use like this
public void actionPerformed(ActionEvent event)
{
Object src = event.getSource();
if (src==radio1 && src == buttonclick)
JOptionPane.showMessageDialog(null,"Raido1 is checked");
}
but it did not work. pls help thx