📚 SAP Business One SDK Help

ProgressBarEvent Event
See Also 
pVal
The object that holds the event information
BubbleEvent

Indicates how the application handles the event. Relevant only when ProgressBarEvent.BeforeAction is true.

  • True: The application handles the event after the current event handler is finished (default).
  • False: The application does not handle the event.
  • Description

    Occurs when a progress bar is created, stopped, or released in the status bar of the application.

    Syntax

    Visual Basic
    Public Event ProgressBarEvent( _
       ByVal pVal As ProgressBarEvent, _
       ByRef BubbleEvent As Boolean _
    )

    Parameters

    pVal
    The object that holds the event information
    BubbleEvent

    Indicates how the application handles the event. Relevant only when ProgressBarEvent.BeforeAction is true.

  • True: The application handles the event after the current event handler is finished (default).
  • False: The application does not handle the event.
  • Remarks

    In SAP Business One, you can display progress information of heavy operations in the application status bar. For more information, see StatusBar.

    See Also