1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 08:50:24 +00:00
QB64-PE/internal/help/_ERRORLINE.txt

37 lines
864 B
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_ERRORLINE}}
The '''_ERRORLINE''' function returns the source code line number that caused the most recent runtime error.
{{PageSyntax}}
2016-03-18 11:36:04 +00:00
:{{Parameter|e%}} = [[_ERRORLINE]]
{{PageDescription}}
* 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 or any other text editor such as Notepad.
* Used in '''QB64''' program error troubleshooting ONLY.
''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]]
* [[ERR]], [[ERL]]
* [[ERROR]]
* [[ERROR Codes]]
{{PageNavigation}}