Changes between Initial Version and Version 1 of Ticket #810
- Timestamp:
- 02/10/09 13:29:01 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #810 – Description
initial v1 3 3 For example, in the following script the MsgBox will NOT be displayed. 4 4 5 6 {{{ 5 7 Local $Value = Repro() 6 8 … … 13 15 EndFunc 14 16 17 }}} 18 15 19 16 20 However, this example will display the dialog. 21 22 {{{ 17 23 Local $Value 18 24 $Value = Repro() … … 25 31 MsgBox(0,"Success","The OnAutoItExit function triggered!") 26 32 EndFunc 33 34 }}}