hi , can i get the code modified from u experts. The 'Scan for virus' button wen clicked should open my local antivirus , consider 'avast.exe' .
JPanel northPanel = new JPanel(new FlowLayout());
JPanel southPanel,mainPanel,centerPanel;
JLabel lblPath,lblFilename;
JButton searchButton = new JButton("Search");
JButton runButton = new JButton("Open");
JButton fileButton = new JButton("Folder...");
JButton scanButton = new JButton("Scan for Virus");
JTextField searchField = new JTextField(20);
JList searchList = new JList(listModel);
JScrollPane scrollList = new JScrollPane(searchList);
JFileChooser filechooser = new JFileChooser();
JRadioButton rbFolder;
JRadioButton rbSystem;
ButtonGroup btGroup;
Container con;