cesarpr4111
Freshman Member
Posts: 38
OS: Windows 10
Theme: Windows 2k
RAM: 4g
|
Post by cesarpr4111 on Feb 26, 2023 10:39:40 GMT -8
|
|
|
Post by Taniko Yamamoto on Feb 26, 2023 13:59:00 GMT -8
It seems like you are opening the downloaded file inside the Windhawk code editor, which won't work at all. What you have to do is copy everything from there into `mod.wh.cpp` and then click "Compile Mod".
|
|
Windows 10-7
Sophomore Member
Posts: 233
OS: Windows 11 22H2
Theme: Aero7 - WindowsBlinds 11
RAM: 16gbs
|
Post by Windows 10-7 on Feb 26, 2023 21:31:33 GMT -8
anyway to fix perigeecopy when extracting files? Attachments:
|
|
kamuisuki
Regular Member
~
Posts: 499
OS: Windows Me
Theme: 5048
CPU: Intel Pentium III-S Tualatin
RAM: 2048
GPU: GeForce 3Ti 500
|
Post by kamuisuki on Feb 26, 2023 22:54:27 GMT -8
Yes its append often using 7zip, if you extract a big file, it will fail with perigeecopy.
|
|
Windows 10-7
Sophomore Member
Posts: 233
OS: Windows 11 22H2
Theme: Aero7 - WindowsBlinds 11
RAM: 16gbs
|
Post by Windows 10-7 on Feb 27, 2023 8:24:34 GMT -8
This is my issue with the context menus, they will also ONLY appear in Registry, now if i turn immersive menus on they work but also have those black bars Attachments:
|
|
Windows 10-7
Sophomore Member
Posts: 233
OS: Windows 11 22H2
Theme: Aero7 - WindowsBlinds 11
RAM: 16gbs
|
Post by Windows 10-7 on Feb 27, 2023 8:44:11 GMT -8
idk how but they're working now, but this is what the menu looks like Attachments:
|
|
|
Post by OrthodoxWin32 on Feb 27, 2023 15:29:23 GMT -8
Windows 10-7 If this happens in the Registry Editor, ExplorerPatcher is not the cause. I think it's more of an issue with the visual style. Can you send me the .msstyle file ?
|
|
Windows 10-7
Sophomore Member
Posts: 233
OS: Windows 11 22H2
Theme: Aero7 - WindowsBlinds 11
RAM: 16gbs
|
Post by Windows 10-7 on Feb 27, 2023 16:44:02 GMT -8
I think its an issue with how windows 11 skins menus as there are new sections called "part 30--" in msstyle editor that windows 10 doesn't have.
I was using Travis's modified Luna10 theme, and I just downgraded back to windows 10 so it shouldnt be an issue anymore lol
|
|
|
Post by arutztele05 on Mar 3, 2023 13:31:58 GMT -8
I think its an issue with how windows 11 skins menus as there are new sections called "part 30--" in msstyle editor that windows 10 doesn't have. I was using Travis's modified Luna10 theme, and I just downgraded back to windows 10 so it shouldnt be an issue anymore lol Speaking about Windows 11, I think if we want to make it work on 11 in the future, we could like theme part 30 and beyond with close-to-XP graphics or something, so we can fix up minor glitches.
|
|
Saturn
Sophomore Member
Posts: 142
OS: Windows XP Professional x64 Edition SP2
Theme: Luna, Royale Noir by Microsoft Corporation
CPU: Intel Core i5-4460 @ 3.20GHz
RAM: 2x4GB 1600MHz DDR3
GPU: NVIDIA GeForce GTX 960
Computer Make/Model: To be filled by O.E.M.
|
Post by Saturn on Mar 3, 2023 13:40:04 GMT -8
|
|
|
Post by abdullah2 on Mar 10, 2023 21:06:26 GMT -8
And finally, the most groundbreaking thing here since I last posted Classic icon selection effect on the desktop! With no bugs with the theme itself! This is done via a Windhawk mod that travis sent me. Any chance of link to that mod? I'd love to try it out. Thanks. Abdullah says, Where I can found this classic selection? I can't found that travis sent you.
|
|
|
Post by The Jackal on Mar 11, 2023 6:34:29 GMT -8
You're quoting the wrong person. Read the last two pages, what you want was posted already.
|
|
|
Post by anixx on Mar 18, 2023 5:36:24 GMT -8
Does it work in folders if SysListView32 is enabled?
|
|
|
Post by OrthodoxWin32 on Mar 18, 2023 7:09:42 GMT -8
Does it work in folders if SysListView32 is enabled? It seems to me that for folders it is useless. travis discovered that removing all items the Explorer::ListView --> ListItem section in the .msstyle brings SysListView32 back to a classic look. Except for the desktop, hence this mode.
|
|
|
Post by anixx on Mar 18, 2023 7:21:22 GMT -8
Well, a switch in Winhawk would be more handy than changing the .msstyle file.
|
|
CEO of youtube
New Member
https://www.youtube.com/watch?v=I3kgpPeRp00&ab_channel=ZaWalrus
Posts: 9
OS: windows 10 LTSC x64
Theme: default (i have some problems)
CPU: Intel(R) Core(TM) i7-9700T CPU @ 2.00GHz 1.99 GHz
RAM: 16 GB hyundai Ram
GPU: Intel(R) UHD Graphics 630
|
Post by CEO of youtube on Mar 25, 2023 20:06:59 GMT -8
man you can give me the windows xp winver? i need it : (
|
|
|
Post by Taniko Yamamoto on Apr 7, 2023 15:00:40 GMT -8
Does it work in folders if SysListView32 is enabled? It doesn't, and a generic filter in Windhawk has caused issues for me in the past. As an alternative solution, you can of course have an observer program that looks for all SysListView32 elements and clears their style. The general pattern to set classic theme on a window (particularly a child window with uxtheme otherwise used) is as follows:
#include <uxtheme.h>
// ... //
SetWindowTheme(hwnd, L" ", L" "); SendMessageW(hwnd, WM_THEMECHANGED, NULL, NULL);
But my solution in this script was to hook OpenThemeData. If I had to guess, having slightly more experience with hooking internal functions like this now, it is possible for an invalid pointer string pointer to be given to the function via pszClassList, which means that you can't necessarily trust dereferencing it. You can workaround 99% of crashes with a check using IsBadStringPtr, no matter how much people say this is a bad function to use or whatever. So then, I assume the crash I was receiving previously was caused by an access violation by string functions expecting a null terminator that doesn't quite exist (they read memory starting from that pointer until the next 0x0000 string for wide characters). So I might experiment again with such an implementation implementing this correction.
Furthermore, I suppose that could extend support to the DirectUI view that File Explorer itself uses, although I am not sure. The above classic theme method does not work for the DirectUI view, but OpenThemeData might, since DUI uses uxtheme it most definitely calls it, but probably doesn't take from the window theme of the host window.
|
|
|
Post by abdullah on Apr 27, 2023 6:36:36 GMT -8
Saturn, Pls give me your OS.
|
|
|
Post by popslikes on Apr 30, 2023 14:03:12 GMT -8
Hi.
Somehow i do struggle to implement FindXer into my Explorer. I did installed the dll, with the help of a workaround (Cmd). But it won't show up in the View toolbar to activate it.
My System:
Windows 8.1 64 Bit system, German build.
Anyone can help me out with this problem?
Cheers.
|
|
gombau
Freshman Member
Posts: 77
|
Post by gombau on May 2, 2023 9:04:49 GMT -8
Amazing transformation, it looks so promising. How did you guys get accurate Windows XP title bar buttons without Windowblinds? I thought without that program it's impossible to get accurate title bar buttons. Where did you guys find so many XP icon alternatives for Windows 10, given that Windows 10 has a lot of brand new icons?
|
|