IndigoDragon
Programmer
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:
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.
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.