|
|
|
|
|
<emailOutlookSession variable>.CurrentFolder (Function) In french: <Variable emailSessionOutlook>.DossierCourant Returns the name of the current folder in the Outlook messaging software. This folder is found in the "Personal folders" branch. Reminder: This function cannot be used to find out the name of the current folder in the Outlook Express e-mail program. // Start the Outlook session SessionID is emailOutlookSession ... // Create a folder in the current folder SessionID.AddFolder(SessionID.CurrentFolder() + "\Work") // Create a folder in the custom folder SessionID.AddFolder("Personal folders\Inbox\MyOwnWork")
Syntax
<Result> = <Session>.CurrentFolder()
<Result>: Character string - Name of current folder,
- Empty string ("") if an error occurred. If an error occurs, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo with the errMessage constant.
<Session>: emailOutlookSession variable
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|