I was wondering if there was some special way to handle if a user wants to open multiple word doc files at the same time. (Ctl + Click each document you want to open then open them)

Right now I recieve an error if I try to open multiple documents at onces.

VB Code:
  1. ChangeFileOpenDirectory strLocation
  2.  
  3.     Set dlgDialog = Dialogs(intMethod)
  4.    
  5.     With dlgDialog
  6.         .Name = strName
  7.         If blnExecute Then
  8.             .Show
  9.         Else
  10.             .Display
  11.         End If
  12.   End With