Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
IProgressDialog (Interfaces)
.
Summary
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.
C# Definition:
ComImport
[Guid("EBBC7C04-315E-11d2-B62F-006097DF5BD4")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IProgressDialog
{
void StartProgressDialog(
/*HWND */ IntPtr hwndParent,
[MarshalAs(UnmanagedType.IUnknown)] /*IUnknown* */ object punkEnableModless,
/*DWORD */ PROGDLG dwFlags,
/*LPCVOID */ IntPtr pvResevered
);
void StopProgressDialog();
void SetTitle(
[MarshalAs(UnmanagedType.LPWStr)] /*LPCWSTR */ string pwzTitle
);
void SetAnimation(
/*HINSTANCE */ IntPtr hInstAnimation,
/*UINT */ ushort idAnimation
);
[PreserveSig]
[return: MarshalAs(UnmanagedType.Bool)]
bool HasUserCancelled();
void SetProgress(
/*DWORD */ uint dwCompleted,
/*DWORD */ uint dwTotal
);
void SetProgress64(
/*ULONGLONG */ ulong ullCompleted,
/*ULONGLONG */ ulong ullTotal
);
void SetLine(
/*DWORD */ uint dwLineNum,
[MarshalAs(UnmanagedType.LPWStr)]/*LPCWSTR */ string pwzString,
[MarshalAs(UnmanagedType.VariantBool)]/*BOOL */ bool fCompactPath,
/*LPCVOID */ IntPtr pvResevered
);
void SetCancelMsg(
[MarshalAs(UnmanagedType.LPWStr)]/*LPCWSTR */ string pwzCancelMsg,
/*LPCVOID */ object pvResevered
);
void Timer(
/*DWORD */ PDTIMER dwTimerAction,
/*LPCVOID */ object pvResevered
);
}
User-Defined Types:
None.
Notes:
None.
Documentation
Exposes methods that provide options for an application to display a progress dialog box.
2/14/2012 4:26:13 PM - -93.87.206.141
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.