We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0929fdf commit da89644Copy full SHA for da89644
personal_macro_workbook.vb
@@ -11349,7 +11349,9 @@ End Function
11349
11350
Function grantFileAccess(filePermissionCandidates)
11351
'https://warwick.ac.uk/fac/sci/systemsbiology/staff/dyer/software/excelvbafileopen/
11352
- grantFileAccess = GrantAccessToMultipleFiles(filePermissionCandidates) 'returns true if access granted, false otherwise_
+ On Error Resume Next
11353
+ grantFileAccess = GrantAccessToMultipleFiles(filePermissionCandidates) 'returns true if access granted, false otherwise_
11354
+ On Error GoTo 0
11355
End Function
11356
11357
0 commit comments