1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00
QB64-PE/internal/help/_SHELLHIDE__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
1.2 KiB
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:10:46}}
{{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$}})
{{Parameters}}
* 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}}