Skip to content

Instantly share code, notes, and snippets.

@eugener
Created October 16, 2010 02:49
Show Gist options
  • Save eugener/629335 to your computer and use it in GitHub Desktop.
Save eugener/629335 to your computer and use it in GitHub Desktop.
TaskDialog dlg = new TaskDialog("Copying...");
dlg.setInstruction("Copying file");
dlg.setText( "Location: From 'Others' to 'Others'\n" +
"File Name: <b>Photo.jpg</b>" );
dlg.setIcon( TaskDialog.StandardIcon.INFO );
JProgressBar pb = new JProgressBar();
pb.setValue(30);
dlg.setFixedComponent( pb );
dlg.show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment