"With ..." Paramters

  • Thread starter Thread starter Sean
  • Start date Start date
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
 
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.
 
Back
Top