Search results

  1. Witzker

    Outlook 2019 Macro to seach in all contact Folders for marked Email Adress

    Hi, the background of my need is we are checking our database for still valid email address and send out an email to this contact. If address has problem, I get a mail in return like this: ----------------- This message was created automatically by mail delivery software. A message that you...
  2. Witzker

    How to get the button Karte ( map) in custom contact form

    Hi, when I put an adress into a standard contact form in OL 2019 I get this button beside the adress: When I switch to customize the form, this Button is gone! HOW to add this button to the custom contact field? In older versions of OL I remember a button in the ribbon to show the address of...
  3. Witzker

    Outlook 2019 Macro GoTo user defined search folder

    Hi, I want to speed up workflow in OL 2019 GERMAN version I have this macro to goto inbox Sub GoTo_Posteingang() Set Application.ActiveExplorer.CurrentFolder = Session.GetDefaultFolder(olFolderInbox) End Sub How to modify this to GoTo the use defined seachfolder: Hope for help PS: I tried...
  4. Witzker

    Outlook 2019 Display the output of a seach in a new Window

    How can the result of e.g this search be displayes in a new window in a list with name and Email? Sub CopyContacts() Dim ContactsFolder As Outlook.Folder Dim DestFolder As Outlook.Folder Dim ContactItems As Outlook.Items Dim ResItems As Outlook.Items Dim sFilter, strCategory As...
  5. Witzker

    Outlook 2019 How to get a Photo in a User Defined Contact form

    Hi, I'm looking for a possibility to get a photo in my User Defined Contact form. The standard Contact form has I think a control for this. Do you know how to put this in a User Defined Contact form? Can this or similar library do the job?
  6. Witzker

    Outlook 2019 Macro to send an Email Template from User Defined Contact Form

    Hi, I have put together this macro That sends an email template to the email address 1 inserts contact name and formats the title from an opened user defined contact form and put some text at the end of the form body in green: Sub TestPlate() 'MAKRONAME eingeben Dim textInFormular...
  7. Witzker

    Outlook 2019 HELP to get Template Path in a Function

    Hi, troubles to get the template path into a function I have a Macro that should send an email template to the already opened contact Fill in Email and name open it for editing and send it without the new function, it worx like this: Sub TESTplate_0() 'Makro name wichtig zum aufrufen Der Name...
  8. Witzker

    Outlook 2019 Edit contact from email does not open the user defined contactform

    Suddenly I noticed this strange behavior before it worked normal and opened the use contact form NOW! When I click on mail address of a received mail to open the user defined contact form with edit contact ( Kontakt bearbeiten)- contact form is not displayed. Instead, the v card view...
  9. Witzker

    Outlook 2019 Macro to check Cursor & Focus position

    Hi, I'm working on a OL2019 custom contact form for further macro operations, I need the Info in which field the cursor & focus is at the moment To do This, I have now this code: Private Sub CheckContactField() MsgBox "Checking contact field..." Dim currField As ContactItem Set...
  10. Witzker

    Set Cursor & Focus from any field to the body of a user Contact form in OL 2019

    Sub SetCursorAndFocus() ' Cursor appears in body, but focus stays in field where it was when calling the macro Dim objItem As Object Set objItem = Outlook.Application.ActiveInspector.CurrentItem If objItem Is Nothing Then MsgBox "No item is open." Exit Sub End If Dim...
  11. Witzker

    Place cursor at opening, a user defined OL contact form

    Hi I want the cursor to be placed at the end of the body field in my Contact form! And Fill in a Return to instantly be at the beginning of a new line so that I don't have to scroll down the whole notes to the end and can start writing a new note immediately when the Form is opened How to...
  12. Witzker

    Add a text line at the end of the note field in all selected Contacts

    Hi, I have a custom form assigned to my contacts in a custom Folder. Now we send serial mails to selected contacts. How to put a line: DATE: letter 1 sent at the end of the body (Note field) in each selected contact? Pls help with a macro many THX
  13. Witzker

    Outlook 2019 Macro to answer a mail with attachments

    Hi I need to answer All or ONE sender of email with keeping all attachments in the answer mail. To do this easy, I found the following macro: Sub RunReplyWithAttachments() 'Update by Extendoffice 20180830 Dim xReplyItem As Outlook.MailItem Dim xItem As Object On Error Resume Next...
  14. Witzker

    How to find all emails from and to a contact in OL 2019

    Hi changed from OL 2010 to 2019 now The function to get emails to and from a contact displayed in a list has been removed in 2019? It was slow in 2010 but useful. How to get this feature back? I have a contact open - and want to see what mails have been sent or received from this contact. I...
  15. Witzker

    Outlook 2019 Pls. add a Prefix for OUTLOOK 2019 here

    If you find the time to do it - pls. THX
  16. Witzker

    Customized Ribbon lost every now and then

    Hi I'm on Outlook 2019 I'm loosing my customized Ribbons in contact and inbox view and also the customized Ribbon and my contact form is replaced by standard ribbon once a day. Furthermore, I have to import my settings, but after a while it is changed to standard again. Is This a known issue...
  17. Witzker

    Outlook 2019 is cutting Picture Extension *.pn_

    Hi I noticed that OL 2019 is cutting the extension *.png to *.pn_ This also happens with *pd_ instead of *.pdf How to change this behaviour
  18. Witzker

    Customized ribbon and entries disappeared

    Hi I moved from Office 2010 to Office 2019 I copied the whole Outlook with MoBackup (Outlook Backup: Daten sichern von Outlook 2019, 2016, 2013, 2010 und 2007 sowie aus Office 365 (mobackup.de)) to the new PC with Office 2019. Everything was fine. Then I changed the zoom factor to custom 105 %...
  19. Witzker

    HowTo Change message Class of contact form

    Hi I moved from Office 2010 to 2019, and I found that DOC Message Class is not working anymore. I also found that there is something Wrong with OLFix There is a 64 bit version on the website, but the download does not work Outlook Add on - Reparatur von Microsoft Office Outlook...
  20. Witzker

    Spam Fighting Solution For 3 Synced Outlooks

    I want to build a Spam fighting solution for 3 Outlooks synced with SimpleSyn with this 3 or 5 macros described. 1st - Exporting sender's email address name@domain.xx to an Excel file called BlackList.xls in a public place and sync it with other Outlooks Concerning this I found: Private Const...
Back
Top