Changes between Version 20 and Version 21 of WikiStart
- Timestamp:
- Mar 10, 2026, 9:07:51 PM (92 minutes ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v20 v21 9 9 * Search the [http://www.autoitscript.com/forum/ forum] to see if the issue has been discussed there. 10 10 * Do not create a new ticket because an old ticket was closed. Reply to the old ticket if you have additional information and the developers will make the determination if the ticket should be re-opened. 11 * Please use the following syntax when inserting code . It helps the code stand out making it easier to read.11 * Please use the following syntax when inserting code (also with the `marks` argument when you want to highlight specific lines). It helps the code stand out making it easier to read. 12 12 {{{ 13 {{{#!autoit 14 MsgBox(4096, "", "This is source code") 13 {{{#!autoit lineno=1 marks=1,3-4 14 _Example() 15 16 Func _Example() 17 MsgBox(4096, "", "This is source code") 18 EndFunc 15 19 }}} 20 }}} 21 Result: 22 {{{#!autoit lineno=1 marks=1,3-4 23 _Example() 24 25 Func _Example() 26 MsgBox(4096, "", "This is source code") 27 EndFunc 16 28 }}} 17 29 * If you must post a large piece of code then please attach the file instead of posting it in-line.
