1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/_ERRORLINE__111111111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

41 lines
997 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:08:07}}
{{DISPLAYTITLE:_ERRORLINE}}
The [[_ERRORLINE]] function returns the source code line number that caused the most recent runtime error.
{{PageSyntax}}
:{{Parameter|e%}} = [[_ERRORLINE]]
{{PageDescription}}
* Used in program error troubleshooting.
* Does not require that the program use line numbers as it counts the actual lines of code.
* The code line can be found using the QB64 IDE (Use the shortcut '''Ctrl+G''' to go to a specific line) or any other text editor such as Notepad.
{{PageExamples}}
''Example:'' Displaying the current program line using a simulated [[ERROR]] code.
{{CodeStart}}
{{Cl|ON ERROR}} {{Cl|GOTO}} DebugLine 'can't use {{Cl|GOSUB}}
{{Cl|ERROR}} 250 'simulated error code
{{Cl|END}}
DebugLine:
{{Cl|PRINT}} {{Cl|_ERRORLINE}}
{{Cl|RESUME}} {{Cl|NEXT}}
{{CodeEnd}}
{{PageSeeAlso}}
* [[ON ERROR]]
* [[_INCLERRORLINE]], [[_INCLERRORFILE$]]
* [[ERR]], [[ERL]]
* [[ERROR]]
* [[ERROR Codes]]
{{PageNavigation}}