Groups | Blog | Home
all groups > dotnet interop > february 2006 >

dotnet interop : Late binding equivalent


CMM
2/23/2006 9:55:46 PM
Everything stays the same except:

1) All your "As xxxx" change to "As Object"
2) o = New Outlook.Application changes to o =
CreateObject("Outlook.Application")

And you get rid of the direct casts (since you can't cast to an object time
you don't know about).

Oh yeah, and Option Strict Off needs to be at the top of the module, I'm
pretty sure.


--
-C. Moya
www.cmoya.com
[quoted text, click to view]

CMM
2/23/2006 11:11:27 PM
Sheesh. If the starting point I gave couldn't get you started, you really
shouldn't be programming. I mean, seriously...it seems that some really
really BASIC concepts are eluding you. You're basically looking for someone
to do it *for you*

Why are using CType? Do you know what it does? Stop trying to "cast." Same
goes for the constant "olContactItem." Find out what integer this represents
(um, research... use your wits) and use that in the place of the constant.

--
-C. Moya
www.cmoya.com

John
2/24/2006 12:00:00 AM
Getting error on Outlook.ContactItem on line below. How do I deal with this?

iCon = CType(F.Items().Add(2), Outlook.ContactItem)

Thanks

Regards

[quoted text, click to view]

John
2/24/2006 1:34:42 AM
Hi

What is the late binding equivalent of the below code?

Many Thanks

Regards


Dim O As Outlook.Application
Dim F As Outlook.MAPIFolder
Dim iCon As Outlook.ContactItem
Dim oContact As Outlook.ContactItem

O = New Outlook.Application

F =
O.Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderContacts)
oContact = DirectCast(F.Items.Item(1), Outlook.ContactItem)
oContact.Delete()

iCon = CType(F.Items().Add(Outlook.OlItemType.olContactItem),
Outlook.ContactItem)
F.Items().Add(Outlook.OlItemType.olContactItem)


AddThis Social Bookmark Button