Skip to content

Show_View_Name - cCJStatusBar

Sent to the statusbar when a view takes the focus passing the name of the view. Is used to update the view pane.

Type: Procedure

Parameters

Parameter Type Description
sName String Name of the View

Syntax

Procedure Show_View_Name String sName

Call Example

Send Show_View_Name sName

Description

Within the framework, giving a view the focus causes this message to be sent to the statusbar passing the name of the new view. This message is used to set the view's name into the cCJStatusBarPane's view pane. The view pane is designated by setting the phoViewPane property. If phoViewPane is 0, this method does nothing.

This method could be augmented.

Procedure Show_View_Name String sName
    Move ("Current View:" * Uppercase(sName)) to sName
    Forward Send Show_View_Name sName
End_Procedure

See Also

Show_Status_Help