You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ucShellBrowse.twin
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -220,6 +220,9 @@ Private Const mVersionMnr = 3
220
220
'
221
221
'-IPAO hooking code integrated so as to not conflict with ucShellTree.
222
222
'
223
+
'-Navigation sound is disabled by default on Windows 10; it's now manually loaded
224
+
' with a user option to disable this behavior.
225
+
'
223
226
'New in v11.3
224
227
'
225
228
'-Added option to apply filter to ComboBox; a FilterDropdown event has been
@@ -642,6 +645,7 @@ Private Const bShowLoadTimeAsStatus As Boolean = False 'Default: False. After lo
642
645
Private Const bSoundNavigate As Boolean = True 'Provide more granular control for the PlaySounds option
643
646
Private Const bSoundDefBeep As Boolean = True
644
647
Private Const bSoundCritical As Boolean = True
648
+
Private Const bNavSoundOverrideExplorer As Boolean = True 'Load the navigation sound even when disabled by default (i.e. Windows 10)
645
649
Private Const nMaxFoldersInCustomSearchLabel As Long = 3& 'Default: 3. After a search, you can click to search again in Custom. It will display Search Results in Folder1, Folder2, nMaxFolders, ...
646
650
'Must be >0
647
651
Private Const bInsertNewFilterMatches As Boolean = True 'Default: True. If an item in the current folder is renamed, and now matches the filter where it didn't before, add it as a new item.
@@ -6135,6 +6139,11 @@ Private Sub UserControl_Initialize() Handles UserControl.Initialize
0 commit comments