|
Post by travis on Oct 19, 2020 14:45:29 GMT -8
I was just getting mixed up, i'm just going to remove the quote. What is that Tahoma dll for? Oh for that, that's another theme for Quero. since I use Tahoma now and not MS Sans Sherif.
|
|
|
Post by anixx on Oct 19, 2020 14:59:27 GMT -8
I use it already, I can't find one for "My Computer". Another way is to use the slider for icon size on the command bar. It allows to set it precisely to 32px. But you would have to temporarily re-enable the command bar.
|
|
|
Post by travis on Oct 19, 2020 15:03:39 GMT -8
I use it already, I can't find one for "My Computer". Another way is to use the slider for icon size on the command bar. It allows to set it precisely to 32px. But you would have to temporarily re-enable the command bar. Thanks, I disabled Classic Theme, used the slider and enable Classic Theme.
|
|
|
Post by anixx on Oct 19, 2020 15:06:22 GMT -8
Thanks, I disabled Classic Theme, used the slider and enable Classic Theme. Still the third way, is to set the mouse wheel to scroll only 1 line in mouse properties, then use Ctrl+Wheel to adjust the size.
|
|
gcomputzide
Sophomore Member
As gcomputing goes on, it comes to the zide.
Posts: 150
OS: Windows 10 1909
Theme: Classic Theme (Winamp 3.0)
CPU: Asus K53E: Intel(R) Pentium(R) CPU B950 @ 2.10GHz
RAM: AMD 8 GB, QUMO 4 GB
GPU: Asus K53E: Intel HD Graphics 3000
|
Post by gcomputzide on Nov 30, 2020 2:56:50 GMT -8
in other way. first you will need to enable small icons on. then you will have to search "IconSize" on regedit. it's gonna tell you wrong slot key. but ignore it and press f3. and then you will located to the #1 slot key. but go to bottom. for mine it says: {5C4F28B5-F869-4E84-8E60-F11DB97C5CC7}. and you can change the icon size to 20. once you're done that. restart explorer. i think that should helps. here's the screenshot of it:
|
|
gcomputzide
Sophomore Member
As gcomputing goes on, it comes to the zide.
Posts: 150
OS: Windows 10 1909
Theme: Classic Theme (Winamp 3.0)
CPU: Asus K53E: Intel(R) Pentium(R) CPU B950 @ 2.10GHz
RAM: AMD 8 GB, QUMO 4 GB
GPU: Asus K53E: Intel HD Graphics 3000
|
Post by gcomputzide on Nov 30, 2020 8:23:08 GMT -8
if it didn't work try #2 slot key.
|
|
Marcoisen
New Member
Rosario, Argentina
Posts: 5
OS: Windows 10 Home Single Language (Build 2004)
Theme: Classic Theme + ROS Taskbar + Quero + AHK Scripts + Icons(98/2000 mixture)
|
Post by Marcoisen on Feb 14, 2021 12:17:17 GMT -8
Hi! I have this problem:
Icons look exactly 32px and in a way that's kind of cool and such but i think i'd like to have my icons with the label on the bottom. Any ideas? Thank you very much!
|
|
|
Post by ihatemetro on Feb 14, 2021 17:19:47 GMT -8
Hi! I have this problem:
Icons look exactly 32px and in a way that's kind of cool and such but i think i'd like to have my icons with the label on the bottom. Any ideas? Thank you very much!
Try using FolderOptionsX instead of whatever method you're using to get the old smaller columns at the top. The registry method enables "extended tiles" for whatever reason.
|
|
|
Post by R.O.B. on Nov 29, 2021 21:12:25 GMT -8
Here is a slightly updated version of the script:
#NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist() SetControlDelay, -1 SetBatchLines -1
DllCall( "RegisterShellHookWindow", UInt,hWnd ) MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" ) OnMessage( MsgNum, "ShellMessage" ) Return ShellMessage(wParam,lParam) { If (wParam = 1 or wParam = 6) { ; HSHELL_WINDOWCREATED := 1 { WinGetClass, WinClass, ahk_id %lParam% if (WinClass = "CabinetWClass") { SendMessage, 0x108F,,,SysListView321, ahk_id %lParam% If (ErrorLevel=0x2) { SendMessage, 0x108E, 0,,SysListView321, ahk_id %lParam% } } } } This version is pretty similar to the original, except it eliminates the need to add and remove the LVS_SMALLICONS style and instead cuts to the chase by basically just telling the ListView control to use large icons. The result is not only cleaner but also much faster.
|
|
|
Post by anixx on Nov 30, 2021 0:34:49 GMT -8
This works much better, thank you!
|
|
|
Post by anixx on Nov 30, 2021 0:36:10 GMT -8
Can the script be modified in such a way that it send this message only if the icons are exactly 32px?
|
|
|
Post by R.O.B. on Nov 30, 2021 9:31:31 GMT -8
Can the script be modified in such a way that it send this message only if the icons are exactly 32px? Yes, but it's a bit slower since it can't get the icon size until the ListView populates. I'll try and post about it a bit later.
|
|
|
Post by R.O.B. on Dec 5, 2021 14:29:24 GMT -8
Sorry for the delay, but this is a bit more of an overhaul than the last one. This was originally part of a larger project of mine that never really saw the light of day. Due to the fact that it's more complex that the original script, I'm distributing it as a package with some extra features. DownloadHere is a quick rundown of what's included: ShellIconSizeMgrThis is the main script that resides in memory. Comes in 32-bit and 64-bit variants (or you can simply run the AHK script in the src folder if you really want to). ShellIconSizeMgrCfgThis small application can be used to change your icon size settings. It allows you to either force small/large icons or specify your own minimum size for large icons. Note: The "Always use large icons" and "Always use small icons" options are faster than the "Specify a minimum size for large icons" option since they don't need to retrieve the current icon size. Use these options if you just want one or the other without any fuss. SetExplorerIconViewThis is a utility that will let you specify a folder's view mode and icon size. It can be added to Classic Shell’s Explorer toolbar or Explorer’s context menu with some registry edits. Usage: SetExplorerIconView.exe [-mode] [size]
-mode The view mode you wish to use. Accepts the following arguments: Icons Sets the view mode to either small or large icons based on your settings SmallIcons Sets the view to Small Icons with labels on the right LargeIcons Sets the view to Large Icons with labels on the bottom Details Sets the view to Details Tiles Sets the view to Extended Tiles List Sets the view to List
size The icon size. Must be an integer with a minimum value of 16 and a maximum value of 256. Can be used with any view mode. Example: This command would be used to set the view mode to 32x32px large icons: SetExplorerIconView.exe -LargeIcons 32
|
|
aubymori
Sophomore Member
👅👅👅👅👅
Posts: 160
OS: Windows 10 IoT Enterprise LTSC 2021
Theme: Windows 10 Default
CPU: Intel Core i5-9300H
RAM: 8GB
GPU: Intel UHD Graphics 630 / NVIDIA GeForce GTX 1650
|
Post by aubymori on Oct 7, 2023 13:16:20 GMT -8
|
|