1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/_SHELLHIDE.txt
2021-02-28 11:47:33 -03:00

38 lines
1.1 KiB
Plaintext

{{DISPLAYTITLE:_SHELLHIDE}}
The [[_SHELLHIDE]] function hides the console window and returns any [[INTEGER]] code sent when a program exits.
{{PageSyntax}}
: {{Parameter|returnCode%}} = [[_SHELLHIDE]]({{Parameter|externalCommand$}})
{{PageParameters}}
* The literal or variable [[STRING]] {{Parameter|externalCommand$}} parameter can be any external command or call to another program.
{{PageDescription}}
* 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.
{{PageExamples}}
''Example:'' Shelling to another QB64 program will return the exit code when one is set in the program that is run.
{{CodeStart}} '' ''
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.
{{PageSeeAlso}}
* [[SHELL (function)]]
* [[SHELL]], [[_HIDE]]
* [[_CONSOLE]], [[$CONSOLE]]
* [[SYSTEM]], [[END]]
{{PageNavigation}}