| Home | All functions | Legacy functions | Categories |
Prototype: vuGlobalsGetEmailFolder(*CSTRING OutFolder), SIGNED, PROC, PASCAL, RAW, NAME(‘vuGlobalsGetEmailFolder’)
Copies the current runtime EmailFolder (save folder) path into a caller-provided buffer.
| Parameter | Type | Description | |—|—|—| | OutFolder | *CSTRING | Caller-provided output buffer that receives the current folder path. |
| Value | Meaning | |—|—| | 1 | Success. |
folder CSTRING(520)
rc LONG
CLEAR(folder)
rc = vuGlobalsGetEmailFolder(folder)
IF rc = 1
MESSAGE('Email folder=' & folder)
ELSE
MESSAGE('vuGlobalsGetEmailFolder failed: ' & vuMailLastError())
END
| Home | All functions | Legacy functions | Categories |