D
Dennis Brown
Hi All,
I'm a blind computer user that uses a screen reader that has a proprietary
scripting language. These scripts can access Office objects and get the
data that otherwise would be off limits to the blind (i.e. graphic icons,
screen data, etc.)
I know some VB, and I understand the OOP concept, but am fuzzy on syntax.
If I want to get the number of attachments on the currently opened message,
I assign
Outlook.Application.ActiveInspector.CurrentItem.Attachments.Count
to an integer variable.
and if I want to display the 3rd attachment, I assign the following to a
string variable:
Outlook.Application.ActiveInspector.CurrentItem.Attachments.Item(3).Display
then use the screen reader's Say() function to announce it via the sound
card.
Say("The total# of attachments is: "+IntToString(iMyIntegerVariable))
Say("The third attachment is: "+sMyStringVariable)
Now, if I want to select that 3rd item (just as if you sighted users clicked
the mouse on the 3rd attachment in an Outlook 2003 open message with
multiple attachments), how would I do that? Would I use the Selection
object? Can I get an example, even if it is within VB code?
I'm a blind computer user that uses a screen reader that has a proprietary
scripting language. These scripts can access Office objects and get the
data that otherwise would be off limits to the blind (i.e. graphic icons,
screen data, etc.)
I know some VB, and I understand the OOP concept, but am fuzzy on syntax.
If I want to get the number of attachments on the currently opened message,
I assign
Outlook.Application.ActiveInspector.CurrentItem.Attachments.Count
to an integer variable.
and if I want to display the 3rd attachment, I assign the following to a
string variable:
Outlook.Application.ActiveInspector.CurrentItem.Attachments.Item(3).Display
then use the screen reader's Say() function to announce it via the sound
card.
Say("The total# of attachments is: "+IntToString(iMyIntegerVariable))
Say("The third attachment is: "+sMyStringVariable)
Now, if I want to select that 3rd item (just as if you sighted users clicked
the mouse on the 3rd attachment in an Outlook 2003 open message with
multiple attachments), how would I do that? Would I use the Selection
object? Can I get an example, even if it is within VB code?