-1
votes
1answer
53 views

link application with a progress bar

private void exportButtonActionPerformed(java.awt.event.ActionEvent evt) { if ("PDF(.pdf)".equals(jComboBox1.getSelectedItem())) { ...
0
votes
0answers
41 views

One handler for two actions

I have a button and a progress bar. Now my question is that when the button is pressed and ActionPerformed method is called which has the code for the action to be performed when the button is ...
0
votes
1answer
68 views

How to show processing info. in program?

I have created a GUI having one JButton and some other components. When I click the button, some back end processing is involved which takes nearly 10-12seconds. How should I represent it ...
0
votes
1answer
906 views

Java : ProgressBar does not display when click on the button

In the application that I am developing these days required to show a progress bar when click on the 'convert' button and the following is my code, public class Main extends JFrame{ private JPanel ...