The Calling Window Affects the Created Window |
To let the calling window affect the created window:
Example: Suppose the calling Bookings window opens the created Days window. For the Bookings window, define a user-defined property UDPDays of type: Days.
<UDPCreated>( <created window>().Window.Create() ) This method call: Fills the user-defined property with the created window. Implicitly opens this window. Example: In the Bookings and Days example, the corresponding method call is: UDPDays( Days().Window.Create() )
Example: To set the background color of the Days window to red, insert a button in the Bookings window, and set the Action property to: UDPDays.background( red ) |