Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Post_Event subroutine ====== ==== Description ==== Posts an event onto the event queue. The posted event will not be executed until the current event chain is completed. ==== Syntax ==== Call Post_Event( Object, Event, Param1, Param2, Param3, …, Param20 ) ==== Parameters ==== ^Name^Required^Description^ |Object|Yes|Identifier of the object to access. Must be in upper-case.| |Event|Yes|Name of the event to execute. Must be in upper-case.| |Param1 - Param20|No|Parameters to be passed to the event. Up to 20 parameters may be used.| ==== Returns ==== N/A ==== Errors ==== N/A ==== Remarks ==== N/A ==== Example ==== <code> $Insert Logical * // Post a CLICK event to the BTN_OK button Call Post_Event( @Window : ".BTN_OK", "CLICK" ) * // Post a CLEAR event to the current window, clearing the key prompt * // and ignoring SAVEWARN warnings Call Post_Event( @Window, "CLEAR", FALSE$, TRUE$ ) </code> ==== See Also ==== Send_Event function. guides/programming/programmers_reference_manual/post_event.txt Last modified: 2023/10/25 10:50by 127.0.0.1