VpeOpenProgressBar

<< Click to Display Table of Contents >>

Navigation:  Management Functions >

VpeOpenProgressBar

Previous pageReturn to chapter overviewNext page

[Windows platform only; not supported by the Community Edition]

Creates a Progress Bar in the Statusbar with the initial value of zero (0%).

void VpeOpenProgressBar(

VpeHandle hDoc

)

VpeHandle hDoc

Document Handle

Remarks:

The Progress Bar hides the text segment in the Statusbar, therefore text displayed there with VpeWriteStatusbar will not be visible until the Progress Bar is closed.

Example:

VpeOpenProgressBar(hDoc)

for n = 0 to 100

 VpeSetProgressBar(hDoc, n)

next n

VpeCloseProgressBar(hDoc)