OnFocus (NotesUIView - LotusScript®)

Occurs when the subwindow displaying the view receives a focus notification.

Note: This event is new with Release 8.0.1

Defined in

NotesUIView

Syntax

OnFocus(Source As Notesuiview)

Parameters

Source

NotesUIView. Read-only. The current embedded view.

Usage

In the case of a view embedded in a form, the embedded view is treated as a separate subwindow. The view onfocus event code does not execute if the containing form receives focus. The view onfocus event code executes only if the embedded view itself receives focus. Note that when the embedded view receives focus, the containing form loses focus, and when the containing form receives focus, the embedded view loses focus.

Using any LotusScript® in the onfocus event that changes focus to other views, forms, or subforms will cause the focus events in those subwindows to execute. First, the currently executing onfocus event code will run to completion, then the onblur code in the current subwindow and the onfocus/onblur code in other affected subwindows will execute. All onfocus/onblur events are queued and held until all current code is finished executing. If multiple onfocus/onblur events are queued for the same subwindow, onfocus will only execute once, and onblur will execute once if the subwindow no longer has focus once onfocus is done executing.

In the case of a form with subforms, all onfocus and onblur events are considered to be a single unit. Either all of them are executed, or none of them are executed.

CAUTION: Because of the way that onfocus/onblur events are queued, designers must be careful not to create a situation where focus is passed from subwindow to subwindow in an endless loop. Changing focus to a dialogue box is not an issue, since dialogue boxes do not have onfocus/onblur events. However care must be taken if the focus is changed to another view, form, or subform. Debugging of onblur/onfocus events is especially challenging, since the use of the debugger causes frequent focus changes.

Example