Guest User

Untitled

a guest
Jun 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. TaskDialog dlg = new TaskDialog("Copying...");
  2. dlg.setInstruction("Copying file");
  3. dlg.setText( "Location: From 'Others' to 'Others'\n" +
  4. "File Name: <b>Photo.jpg</b>" );
  5. dlg.setIcon( TaskDialog.StandardIcon.INFO );
  6.  
  7. JProgressBar pb = new JProgressBar();
  8. pb.setValue(30);
  9. dlg.setFixedComponent( pb );
  10. dlg.show();
Add Comment
Please, Sign In to add comment