"With ..." Paramters

S

Sean

Does anyone know where I might be able to find a list of "identifiers" (not
sure if I'm using the correct terminology.)for OL 2000 and XP? For example,
when I do the following code...

With myItem
.Subject = "Your custom quote"
.Body = "" 'body text goes here
End With

I want to be able to see a list of any and all options available to all
objects in OL.

--
______________________________
Thank you, Sean
Artist/Production Manager
Please visit us at www.oatesflag.com
502-267-8200
502-267-8246 fax
 
K

Ken Slovak - [MVP - Outlook]

Use the Object Browser to see all properties, methods and events that
each Outlook item and collection support. For VBA, use Alt+F11 to open
the VAB window. Open the Object Browser (F2) and select the Outlook
library in the drop-down list. You can then scroll through the list of
Outlook objects and see what they have to offer. If you are using VB
or VBA you also should get a list of what you can use from
intellisense when you type the dot operator in your With block.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top