Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Outlook connection failing.

Status
Not open for further replies.

IndigoDragon

Programmer
Aug 2, 2005
57
NL
Hi there,

I made a macro to import mail from an Outlook folder.
Worked fine in Office2002. Now, when using Office2003 the script says a 'module can not be found'. The line it's referring to doesn't contain a module name as far as I know. I used the following script:

Code:
Dim OLF As Outlook.MAPIFolder, CurrUser As String, _
EmailItemCount As Integer, i As Integer, EmailCount As Integer

Application.Calculation = xlCalculationManual
Set OLF = GetObject("", "Outlook.Application").GetNamespace("MAPI").GetDefaultFolder(olFolderInbox)
EmailItemCount = OLF.Items.Count

************
etc., etc.

The error occurs on the line "Set OLF". (I added references to Outlook object library.)
Excel says that "GetObject()" is a module...???

Does anyone know what the problem is?

ThanX for your replies.
 
Is Outlook already launched ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Hi PHV,

thanx for your reply!
Outlook is already running.

Else: wouldn't Excel say an object or app can not be found?
And: isn't GetObject() a native vba function? It now reads it as a module name. That's where the problem is.

Greetz.
 
No missing references ?
Does the Project compiles properly ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Hi PHV,

I found what was wrong. It was the notation. GetObject(,"Outlook.Application") is accepted, GetObject("","Outlook.Application") is not. ???

I don't know why, but, whatever...

ThanX for your replies!

cYa.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top