View Single Post
Old 02-04-2012, 04:42 PM   #431
Gauthier
Enthusiast
Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'Gauthier knows the difference between 'who' and 'whom'
 
Posts: 25
Karma: 10000
Join Date: Jan 2012
Device: kindle
Correction To allow Multiple file selection on Import File (Word 2007/2010 only)
Replace
Code:
Sub bcInsertfile()
'________________________________________________
' NAME: bcInsertfile
' AUTHOR: =X=
' DESCRIPTION: Opens insert file dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
    With Dialogs(wdDialogInsertFile)
        .Name = "*.*"
        .Show
    End With
End Sub
With

Code:
Sub bcInsertfile()
'________________________________________________
' NAME: bcInsertfile
' AUTHOR: =X=
' DESCRIPTION: Opens insert file dialog box.
' HISTORY:
' DATE: 09/06/2008
'________________________________________________
    CommandBars.FindControl(ID:=777).Execute
End Sub
Gauthier is offline   Reply With Quote