Window Event In PowerBuilder
WINDOW EVENTS IN POWERBUILDER | |
Activate | Just before the window becomes active |
Clicked | User clicks in an unoccupied area of the window (any area with no visible, enabled control) |
Close | When window is closed. |
CloseQuery | When you remove a window from display (close it) |
Deactivate | When window becomes inactive. |
DoubleClicked | When user double-clicks in an unoccupied area of the window (any area with no visible, enabled object). |
DragDrop | When a dragged control is dropped on the window. |
DragEnter | Dragged control enters the window. |
DragLeave | Dragged control leaves the window. |
DragWithin | Dragged control is within the window. |
Hide | Just before the window is hidden. |
HotLinkAlarm | After a DDE server app has sent (changed) data and the client DDE application has received it. |
Key | When user presses a key and the insertion point is not in RichTextEdit or DataWindow edit control. |
MouseDown | When the user presses the left mouse button in an unoccupied area of the window (any area with no visible,enabled object). |
MouseMove | When the pointer is moved within the window. |
MouseUp | When user releases the left mouse button in an unoccupied window area (any area with no visible, enabled object). |
Open | When a script executes the Open function for a window. |
Other | When a Windows message occurs that is not a PowerBuilder event. |
RButtonDown | When right mouse button is pressed in an unoccupied window area (any area with no visible, enabled object). |
RemoteExec | When a DDE client application has sent a command.See the platform note at the beginning of this section |
RemoteHotLinkStart | When a DDE client application wants to start a hot link. |
RemoteHotLinkStop | When a DDE client application wants to end a hot link. |
RemoteRequest | When a DDE client application requests data. |
RemoteSend | When a DDE client application has sent data.S |
Resize | When the user or a script opens or resizes a window. |
Show | When a script executes the Show function for this window. The event occurs just before the window is displayed. |
SystemKey | When the insertion point is not in a line edit and the user presses ALT or ALT + another key |
Timer | When a specified number of seconds elapses after the Timer function has been called. |
ToolbarMoved | In an MDI frame window, when the user moves the FrameBar or SheetBar |
Good Luck!