Recent content by Victor_50

  1. Victor_50

    Problem - Google Workspace will stop "unsafe" access to Outlook end 2024

    It seems that my own version of Outlook 2019 is now capable of Outh2, as I can select Google and Office365 as type, next to IMAP, POP and Exchange. I guess this happened during a recent update. I had to use an app password from the start a few years ago. So now my problem is how to ensure a...
  2. Victor_50

    Problem - Google Workspace will stop "unsafe" access to Outlook end 2024

    I had some trouble transferring outlook to a new PC. Tried to find a solution in the Google Workspace administration. There was a message that support for access to "unsafe" apps, among them Outlook 2019, will end 2024. They have made a tool to get access to older versions. "New" Outlook 356...
  3. Victor_50

    Outlook 2019 Jump to folder from search folder

    I use a search folder to collect new unread email and then mark some of them to follow up. Following rules these mails are in different folders. The folder is shown in the search folder. I would like VBA code that can jump to this folder.
  4. Victor_50

    Outlook 2013 Custom Contact Form starts with "E-mail 2"

    A thank you, not sure how to show you the gender selector. I guess I will try to derive a new form from my old one (OL 2003 I think). The one I just made previously was from the 2013 default. I hoped a user picture would stay included but that was not the case.
  5. Victor_50

    Outlook 2013 Custom Contact Form starts with "E-mail 2"

    For a long time I have used a custom contact form. Made a new one and when using it it turns out the emailselector starts with "E-mail 2" in stead of "E mail" and my gender selector starts with "19-..." instead of "u" or "m". Tried to repair this in the form designer but that seems not possible...
  6. Victor_50

    Set all subfolders to not autoarchive

    Finally found the error. The instructions told me to put the procedures in a seperate module, but I don't like that so pasted it in an existing one. The declaration of the constants should have been moved to the declarations section of the module. So (1) bad error message in VBA (not: variable...
  7. Victor_50

    Set all subfolders to not autoarchive

    Ah, it should mean that, but it doesn't. I tested this with a folder with autoarchive settings and it returns nothing, so there is no object that can be deleted. In the meantime I tried this: Dim oFolder As Outlook.Folder Dim tTable As Outlook.Table Dim rRow As Outlook.Row Set oFolder =...
  8. Victor_50

    Set all subfolders to not autoarchive

    Unfortunately it doesn't for the same reason as "SetAgingProperties". Tried to look at it by Set tTable = oFolder.GetTable("", olHiddenItems) Then it lists "IPC.MS.Outlook.AgingProperties" thats how far I got...
  9. Victor_50

    Set all subfolders to not autoarchive

    Ah, I would like to try this but I am not that good in coding to see how this could be achieved in the function "SetAgingProperties"
  10. Victor_50

    Set all subfolders to not autoarchive

    After some thought I guess maybe "Do not archive" is not seen as an archive setting so, although it is part of the archive settings options it cannot be set this way. For reference, the code is here. More specific the function Function GetAgingProperties(oFolder As Outlook.Folder, AgeFolder...
  11. Victor_50

    Set all subfolders to not autoarchive

    Hi, I have been trying to get some (found) code working to copy the autoarchive setting "do not autoarchive" to all subfolders of a specific folder. There are two issues: It seems that setting "do not autoarchive" is not included in the code, it looks at all aspects of archiving save "do not...
  12. Victor_50

    jump to actual folder from favorite

    Is there a way to (in VBA) (1) jump from a folder in the outlook favorites pane to the actual folder in the tree pane and (2) is there a way to establish if the "selected" folder is in the tree or in the favorites pane? Seems that a similar question has been posted july 2015 but with 0 answers...
Back
Top