View Single Post
Old 02-04-2012, 04:39 PM   #430
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 for the parent folder selection issue I have.
replace
Code:
    With Application.FileDialog(msoFileDialogFolderPicker)
        
        bDisplayVal = .Show
        szPath = VBA.CurDir
    End With
With

Code:
    With Application.FileDialog(msoFileDialogFolderPicker)
        
        bDisplayVal = .Show
        szPath = .SelectedItems(1)
    End With
Gauthier is offline   Reply With Quote