Changes between Initial Version and Version 1 of Ticket #1789
- Timestamp:
- 10/16/10 07:11:22 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1789 – Description
initial v1 1 1 Executing the following from within SciTE will not generate a syntax error. Instead, the script will hang indefinitely between the first Msgbox() and the second. A compiled version of the script will error out and terminate properly, so the issue occurs only when launching from within SciTE. 2 2 3 {{{#include <GuiRichEdit.au3> 3 {{{ 4 #include <GuiRichEdit.au3> 4 5 Global $hRichEdit, $Array[2][2] 5 6 … … 8 9 MsgBox(0,"","About to freeze...") 9 10 $Array[1] = "X" ; bad reference to 2-dimension array should cause abend 10 MsgBox(0,"", "I'll never get this far!")}}} 11 MsgBox(0,"", "I'll never get this far!") 12 }}}