Good afternoon wvmurph
Not sure if this will work, but you could try forcing it to open under the registered Windows application by using this API. It's never let me down yet!
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Sub test()
ShellExecute 0, vbNullString, "test.rdp", vbNullString, "C:\", 1
End Sub
HTH
DominicB
Bookmarks