• Webseitenerstellung und -hosting
  • .NET Anwendungsentwicklung
  • softwaregesteuerte Prozessoptimierung
  • .NET

    Programmierung

  • WebseitenErstellung

    undHosting

  • softwaregesteuerte

    Prozessoptimierung

  • Konzeption

    und Beratung

%AM, %14. %400 %2016 %08:%Jul

Outlook Mail signieren

geschrieben von
Artikel bewerten
(4 Stimmen)

Um eine Mail im Outlook zu signieren war es bisher üblich über die Funktion

CommandBars.FindControl(,719).Execute

den "signieren" Button des MailItem-Ribbons zu betätigen. Auch in der Vergangenheit war es schwierig da man u.U. die Execute Methode 3x aufzurufen (sic!). Nachdem dies ab Office 2013 nicht mehr funktioniert, generell wird die Commandbars Methode nicht mehr unterstützt, musste ich eine Alternative finden. Wie immer in diesem Blog findet man das nicht durch en bisschen Googeln, deshalb hier die Lösung: Die Property PR_SECURITY_FLAGS des aktuellen Mailitems setzen:

 ''' <summary>
    ''' E-Mail Item signieren (Zertifikat)
    ''' </summary>
    ''' <param name="blnSignieren"></param>
    ''' <remarks></remarks>
    Public Shared Sub Nachricht_signieren(blnSignieren As Boolean)
        Try
            Const PR_SECURITY_FLAGS = "http://schemas.microsoft.com/mapi/proptag/0x6E010003"
            Const SECFLAG_NONE = &H0
            Const SECFLAG_SIGNED = &H2
            'Const SECFLAG_ENCRYPTED = &H1

            'Aktuelles Mailitem holen
            Dim actOutItem As Outlook.MailItem
            actOutItem = CType(oOut.ActiveInspector.CurrentItem, Outlook.MailItem)

            'Sign / Unsign
            If Funktionen.isEmailItem(actOutItem) Then
                Dim prop As Long
                prop = CLng(actOutItem.PropertyAccessor.GetProperty(PR_SECURITY_FLAGS))
                actOutItem.PropertyAccessor.SetProperty(PR_SECURITY_FLAGS, If(blnSignieren = True, SECFLAG_SIGNED, SECFLAG_NONE))
            End If

            actOutItem = Nothing

        Catch ex As Exception
            Throw ex
        End Try
    End Sub

eine Auflistung der Properties findet Ihr auf der Webseite https://searchcode.com/codesearch/view/3372596/ bzw. da ich dem Internet nicht traue, ebenfalls als Textdatei im Anhang. Danke. Bitte :-)

Gelesen 93808 mal

2614 Kommentare

  • Kommentar-Link Agbdomma %AM, %01. %276 %2024 %05:%Okt gepostet von Agbdomma

    Risk factors include family history of hypertension, excessive alcohol intake, high sodium levels, and obesity.
    Buying levitra 10 mg filmtabletten vardenafil pills from this online portal
    They visited relatives, ate home-cooked food, and drank local water.

  • Kommentar-Link Afsddomma %AM, %01. %275 %2024 %05:%Okt gepostet von Afsddomma

    Is there a formula I could switch her to that could help her?
    The first time you vardenafil levitra staxyn too?
    Your doctor may choose to do an abdominal x-ray, an ultrasound scan, or a computerized tomography CT scan to confirm appendicitis or find other causes for your pain.

  • Kommentar-Link Agbdomma %AM, %01. %258 %2024 %05:%Okt gepostet von Agbdomma

    Take all of your medication even if your symptoms disappear.
    Customers satisfaction guarantee at vardenafil brand name for all medications are available globally
    Discuss your treatment options with your doctor.

  • Kommentar-Link Afsddomma %AM, %01. %257 %2024 %05:%Okt gepostet von Afsddomma

    Gerson LB, Kahrilas PJ, Fass R.
    View specials coming from first-rate pharmacies where you can comprar vardenafil generico at the lowest prices
    Can chronic throat clearing be a sign of mold exposure?

  • Kommentar-Link Agbdomma %AM, %01. %085 %2024 %01:%Okt gepostet von Agbdomma

    He also got the Beneful dog biscuits.
    Keep saving money when you i take vardenafil 10 mg three times a day delivered right to your door with no hassles. Order Online!
    The sooner breast cancer is diagnosed, the more effective treatment may be, so we welcome this vital campaign to raise awareness among women over 70.

  • Kommentar-Link Afsddomma %AM, %01. %085 %2024 %01:%Okt gepostet von Afsddomma

    Dimsdale, MD NOTE: This is the Professional Version.
    Can I expect to take i take vardenafil 10 mg three times a day pills to your door if you order what you need here
    Leanne If you are 8 weeks late I would check with your doctor.

  • Kommentar-Link Afsddomma %PM, %30. %911 %2024 %20:%Sep gepostet von Afsddomma

    Read to know how naturopathy helps in diabetes treatment.
    Fix health problems with generic vardenafil online is the best part about the internet.
    In general, patients require 1 unit of rapid-acting insulin for each 15 g of carbohydrate in a meal.

  • Kommentar-Link Agbdomma %PM, %30. %910 %2024 %20:%Sep gepostet von Agbdomma

    Most cases of acute laryngitis are caused by a viral infection that leads to swelling of the vocal cords.
    you need an effective treatment option, you should definitely where to buy vardenafil in the united states , always compare prices before you place an order, Лучшие
    Use of the nasal spray seasonal flu vaccine Who should not be vaccinated against seasonal flu?

  • Kommentar-Link Afsddomma %PM, %30. %753 %2024 %17:%Sep gepostet von Afsddomma

    Your doctor also can provide instructions on how to use and store injectable epinephrine.
    Always follow proper dosage instructions when you vardenafil hcl 10mg tab pills from these pharmacies
    Options include lorazepam Ativan , diazepam Valium , chlordiazepoxide Librium , and alprazolam Xanax, Niravam.

  • Kommentar-Link Agbdomma %PM, %30. %753 %2024 %17:%Sep gepostet von Agbdomma

    Read More My lumbar pain is manageable and can be relieved by taking pressure off the region laying with legs propped for a couple hours.
    There are ways to vardenafil hcl 20mg tab cost pills easily.
    PubMed Abstract Publisher Full Text totext Kessler RC, Berglund P, Demler O, Jin R, Koretz D, Merikangas KR et al..

Schreibe einen Kommentar

Bitte achten Sie darauf, alle Felder mit Stern * zu füllen. HTML-Code ist nicht erlaubt.