Please enable JavaScript to view this site.

QPR Knowledge Base 2023.1

  •      
  • Navigation: Developer's Guide > QPR API > The Object Model > QPR Modeling > PGApplication Commands

    SetUIMode

    Scroll Prev Top Next More

    Revision history:

    Introduced in QPR 7.2.1

     

    Sets the user interface mode. Can be used for hiding the user interface.

     

    Synopsis:

     

    PGApplication.SetUIMode(Silent | Normal)

     

    Parameters:

     

    Mode: Integer, either 0 (UI_SILENT) or 1 (UI_NORMAL)

     

    Required Rights:

     

    None.

     

    Return Values:

     

    None.

     

    Example procedure:

     

    Sub SetSilentMode()

     Dim iResult

     iResult = PGApplication.SetUIMode(0)

     If (iResult <> 0) Then

       MsgBox "Could not set silent UI mode: " + PGApplication.GetErrorMessage(iResult)

     End If

    End Sub