Topics

03 Troubleshooting
Designer
Writing executable code at module level

Executable code at the module level is not supported. Code inside an execute statement but outside any function is at module level and should be avoided.

For example, the code fragment:

Execute |
Print "Hello World!"
|

Should be rewritten as:

Execute |
Sub Initialize

Print "Hello World!"
End Sub
|