OnOpening  Browser

The OnOpening event is called during the document is opening.

Syntax

Browser.OnOpening(
     Integer pos,
     Integer max)

Parameters

posCurrent position.
maxMaximum position.

Return value

The OnOpening event has no return values.

Example

message Application.Browser.OnOpening(Integer pos, Integer max)
{
    // Progress bar range value: 0-100
    m_progress.SetValue(pos/max*100)
}
SECCIA Documentation - Copyright © 2001-2009 Sylvain Seccia