Questions tagged [iprogressdialog]

Exposes methods that provide options for an application to display a progress dialog box.

This interface is exported by the progress dialog box object (CLSID_ProgressDialog). This object is a generic way to show a user how an operation is progressing. It is typically used when deleting, uploading, copying, moving, or downloading large numbers of files.

5 questions
4
votes
3 answers

IProgressDialog questions: Do I misunderstand its multithreading, as I seem to need a message pump? Can I avoid opening another dialog before it ends?

I'm trying to use IProgressDialog in PROGDLG_MODAL mode and I'm hitting two snags. First, from what I gather from MSDN and the block comment in the header file describing IProgressDialog, you are supposed to use it directly from the…
andlabs
  • 11,290
  • 1
  • 31
  • 52
2
votes
2 answers

Cancel IProgressDialog in Delphi

I'm running a long operation and I figured a good way to present it to the user was to use a system progress dialog using the IProgressDialog object. I only found a couple of usage examples, and this is my implementation. The problems I have are…
Leonardo Herrera
  • 8,388
  • 5
  • 36
  • 66
0
votes
2 answers

Custom Progress Bar with Animation List

I want to create a progress bar which should show moving images effect. for that I have created an animation list and have saved in my drawables folder in res. Here is the code:
Gaurav Arora
  • 8,282
  • 21
  • 88
  • 143
0
votes
0 answers

Show ProgressBar with windowClosing(WindowEvent we)

I have a JFrame. Frame was executed on EDT. A window closing event is being added to that frame using window adapter. What i need is; There is a background task that delete files generated by the application; and that task starts running when the…
Ahmad Ali
  • 85
  • 1
  • 1
  • 5
0
votes
1 answer

Android loading listview with progress dialog

this is my code to load listview items @SuppressLint("DefaultLocale") public class SearchList extends Activity { private ArrayList founded = new ArrayList(); private OrderAdapter m_adapter; ListView lv; /** Called when…
Ayman
  • 81
  • 2
  • 10