| All functions | Legacy functions | About function names |
Load a named managed profile into active runtime memory.
This is the named-profile load function for Pro and Back Office workflows.
vuLoadProfileExvuLoadProfileEx(*CSTRING ProfileName),LONG,PROC,PASCAL,RAW,NAME('vuLoadProfileEx')| Parameter | Type | Description | Expected values / range |
|---|---|---|---|
| ProfileName | *CSTRING | Managed profile name to load. | Example: work-account. Blank falls back to default. |
1 = success0 = load failed-401 = vuMailKit was not initialized-402 = license is invalid or initialization failed-403 = current license tier does not allow this featurevuLoadProfileEx() performs an explicit managed-profile load of the named profile.
After a successful load:
ProfileName CSTRING(80)
Result LONG
ProfileName = 'work-account'
Result = vuLoadProfileEx(ProfileName)
ProfileName is blank, the load falls back to default.vuMailKitInitialize(LicenseString) at EXE startup before using this function.| All functions | Legacy functions | About function names |