Previous topic

AppNewTimer

Next topic

AppProgressDestroy

This Page

AppProgressCreateΒΆ

AppProgressCreate.

bool = AppProgressCreate()
bool = AppProgressCreate(nUpper)
bool = AppProgressCreate(nLower, nUpper, nStep, bSmooth)

Return Value

If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0).

Parameters

nLower

Default value is 0.

nUpper

Default value is 100.

nStep

Default value is 1.

bSmooth

Default value is FALSE (0).

Example

def TestAppProgressCreate()
{
    AppProgressCreate(67)
    for (i in 1:67) {
        AppProgressStepIt()
        AppSleep(50); // Simulate some work
    }
    AppProgressDestroy()
}

TestAppProgressCreate()

History

Version Description
5.14.4 Call with one parameter changed: Instead of bSmooth, nUpper is set.

id-972059