TC12, Outlook16 - select folder does not work
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2018
06:30 AM
06-08-2018
06:30 AM
TC12, Outlook16 - select folder does not work
Hello
Need to set current selected folder in Outlook 16 (and 13).
The folder is a subfolder of Inbox.
With TC11 I could do it the following way (JScript😞
var folder = 'TestFolder';
var folderObj = outlook.GetNamespace('MAPI').Folders(EMAIL).Folders(INBOX_FOLDER).Folders(folder); outlook.ActiveExplorer.CurrentFolder = folderObj;
In TC12 it doesn't work.
What I tried is (JavaScript😞
const folderObj = outlook.GetNamespace('MAPI').DefaultStore.GetRootFolder().Folders.Item(EMAIL).Folders.Item(folder); const ex = outlook.ActiveExplorer(); ex.CurrentFolder = folderObj;
Variables valuse after first 2 lines, before the third:
After executing the third line an error occures:
JavaScript runtime error. The operation failed.
Reproduces on both Outlook 16 and 13.
win10 x64, Office 32-bit
Please help in resolving the matter.
---
Nikita
Nikita
Solved! Go to Solution.
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2018
08:23 AM
06-08-2018
08:23 AM
I suggest you contact Support directly about this issue. Here's the link:
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2018
04:54 AM
06-13-2018
04:54 AM
Contacted the support 4 days ago, waiting for the response.
Will write the answer below if any.
---
Nikita
Nikita
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2018
03:06 AM
06-20-2018
03:06 AM
We've figured out ourselves how to implement that in TC12.
outlook.GetNamespace('MAPI').DefaultStore.GetRootFolder().Folders.Item(folder); outlook.Application.ActiveExplorer().SelectFolder(folder); const currentView = outlook.Application.ActiveExplorer().CurrentFolder.CurrentView; currentView.Reset(); currentView.Apply();
Hope it will save time for somebody.
---
Nikita
Nikita
