C
code_monkey_number_9
question about using the SelectNamesDialog when automating Outlook 2007 from
Access 2007: the MSDN Office Developer Center remarks that, for the Display
method, "When displaying the Select Names dialog box, Display uses the
previous location and size (indicated by the top, left, width, and height) of
the dialog box."
For me this means that when I display the box, it is consistently hidden
behind one or more other open windows. When I call the dialog from my access
form, I have to click on the Outlook application (on the start bar) to
'activate' outlook for the dialog to appear.
Is there a way to set the dialog's position and/ or focus?
Here's how I'm calling the dialog:
Dim olApp As Outlook.Application
Dim olNS As Outlook.Namespace
Dim olDialog As SelectNamesDialog
Dim olAddressList As AddressList
Dim olRecipient As Outlook.Recipient
Dim strTo As String
Dim x As Integer
Set olApp = CreateObject("Outlook.Application")
Set olNS = olApp.GetNamespace("MAPI")
Set olDialog = olNS.GetSelectNamesDialog
Set olAddressList = olNS.GetGlobalAddressList
With olDialog
.InitialAddressList = olAddressList
.SetDefaultDisplayMode olDefaultMeeting
If .Display Then
For Each olRecipient In .Recipients
x = x + 1
strTo = strTo & .Recipients(x) & "; "
Next
End If
End With
Me.Text12 = strTo
Set olApp = Nothing
Set olNS = Nothing
Set olDialog = Nothing
Set olAddressList = Nothing
Access 2007: the MSDN Office Developer Center remarks that, for the Display
method, "When displaying the Select Names dialog box, Display uses the
previous location and size (indicated by the top, left, width, and height) of
the dialog box."
For me this means that when I display the box, it is consistently hidden
behind one or more other open windows. When I call the dialog from my access
form, I have to click on the Outlook application (on the start bar) to
'activate' outlook for the dialog to appear.
Is there a way to set the dialog's position and/ or focus?
Here's how I'm calling the dialog:
Dim olApp As Outlook.Application
Dim olNS As Outlook.Namespace
Dim olDialog As SelectNamesDialog
Dim olAddressList As AddressList
Dim olRecipient As Outlook.Recipient
Dim strTo As String
Dim x As Integer
Set olApp = CreateObject("Outlook.Application")
Set olNS = olApp.GetNamespace("MAPI")
Set olDialog = olNS.GetSelectNamesDialog
Set olAddressList = olNS.GetGlobalAddressList
With olDialog
.InitialAddressList = olAddressList
.SetDefaultDisplayMode olDefaultMeeting
If .Display Then
For Each olRecipient In .Recipients
x = x + 1
strTo = strTo & .Recipients(x) & "; "
Next
End If
End With
Me.Text12 = strTo
Set olApp = Nothing
Set olNS = Nothing
Set olDialog = Nothing
Set olAddressList = Nothing