Bekijk de onderstaande video om te zien hoe je onze site als een web app op je startscherm installeert.
Opmerking: Deze functie is mogelijk niet beschikbaar in sommige browsers.
Private Sub CommandButton1_Click()
With CreateObject("Outlook.Application").CreateItem(0)
.To = "jack@fish.nl"
.Subject = "www.helpmij.nl"
.HTMLBody = "Hier komt de tekst in het bericht."
.Display
End With
End Sub
Private Sub CommandButton1_Click()
Dim OutApp As Object
Dim OutMail As Object
Dim strbody As String
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
With OutMail
.To = "Jack@fish.nl"
.Subject = "www.helpmij.nl"
.Display
End With
On Error GoTo 0
End Sub
We gebruiken essentiële cookies om deze site te laten werken, en optionele cookies om de ervaring te verbeteren.