Re: Object variable or with block variable not set



Maybe this would give a hint:

Set OutApp = Nothing
On Error Resume Next
Set OutApp = CreateObject("Outlook.Application")
If Err.Number <> 0 Then
MsgBox Err.Number & vbLf & Err.Description
Err.Clear
End If
On Error GoTo 0

Piotr wrote:
>
> Unfortunatly CreateObject("Outlook.Application") failed no idea ...

--

Dave Peterson
.