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/_SHELLHIDE.txt

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_SHELLHIDE}}
2021-01-04 18:45:32 +00:00
The [[_SHELLHIDE]] function hides the console window and returns any [[INTEGER]] code sent when a program exits.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
: {{Parameter|returnCode%}} = [[_SHELLHIDE]]({{Parameter|externalCommand$}})
{{Parameters}}
2021-01-04 18:45:32 +00:00
* The literal or variable [[STRING]] {{Parameter|externalCommand$}} parameter can be any external command or call to another program.
2017-10-10 14:55:21 +00:00
{{PageDescription}}
2021-01-04 18:45:32 +00:00
* A QB64 program can return codes specified after [[END]] or [[SYSTEM]] calls.
* The {{Parameter|returnCode%}} is usually 0 when the external program ends with no errors.
2017-10-10 14:55:21 +00:00
{{PageExamples}}
''Example:'' Shelling to another QB64 program will return the exit code when one is set in the program that is run.
{{CodeStart}} '' ''
2019-04-15 01:15:33 +00:00
returncode% = {{Cl|_SHELLHIDE}}("DesktopSize") 'replace call with your program EXE
{{Cl|PRINT}} returncode%
{{Cl|END}} '' ''
{{CodeEnd}}
: ''Explanation:'' To set a program exit code use an [[INTEGER]] parameter value after [[END]] or [[SYSTEM]] in the called program.
2017-10-10 14:55:21 +00:00
{{PageSeeAlso}}
* [[SHELL (function)]]
* [[SHELL]], [[_HIDE]]
* [[_CONSOLE]], [[$CONSOLE]]
* [[SYSTEM]], [[END]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<