Hello.
I performed a program called 'myprogram' and, since now, I executed it by calling from MS-DOS:
java com.foo.myprogram param1 param2 param3
But I created a Swing program, and I would like to call it by pressing a buttom:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
<<< I do not know >>>
}
});
any help is welcome.
Regards and thank you.
I performed a program called 'myprogram' and, since now, I executed it by calling from MS-DOS:
java com.foo.myprogram param1 param2 param3
But I created a Swing program, and I would like to call it by pressing a buttom:
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
<<< I do not know >>>
}
});
any help is welcome.
Regards and thank you.