Hallo,
ich habe nie mit VisualStudion gearbeitet. Grundsätzlich benötigst du bei LateBinding (also deine Vorgehensweise) keine Verweise. Ich vermute vielmehr, dass deine Fehlermeldung damit zu tun hat, dass du nicht mit set zuweist:
Dim objOutlookMsg As Object
set objOutlookMsg = CreateObject("Outlook.MailItem")
Zum Thema E-Mail mit Outlook findest du so dermaßen viel Code im Netz, da solle es eigentlich kein Problem sein (zum Beispiel auf http://rondebruin.nl/)
Aus dem Kopf (kann gerade nicht testen):
Dim objOutlookMsg As Object
set objOutlookMsg = CreateObject("Outlook.MailItem")
with objOutlookMsg
.to = "a@b.de"
.subject = "Betreff"
.body = "Hallo"
' .attachment = "c:\...\data.dat"
.display
end with
kommst du klar?
Grüße, Ulrich
|