|
Post by ihatemetro on Oct 27, 2020 15:28:12 GMT -8
This IS enabling the classic theme. It also disables DWM. Renaming Resources is more deadly, just use standard WinLogon handles. Disabling DWM is not required, and requires a lot of tweaks to actually be usable and some other applications, more than just Open-Shell. Unless if you are using Windows 8 or 8.1, where even then the logon screen is going to be unusable.
|
|
|
Post by anixx on Oct 28, 2020 7:58:46 GMT -8
This IS enabling the classic theme. It also disables DWM. Most people on this forum use Classic theme without disabling DWM. If you want to disable DWM, you have quite special needs besides having Classic theme.
|
|
|
Post by strontium on Oct 30, 2020 7:54:50 GMT -8
I think you can make an AHK for that. My script for folderview: #NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist()
DllCall( "RegisterShellHookWindow", UInt,hWnd ) MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" ) OnMessage( MsgNum, "ShellMessage" )
Return ; // End of Auto-Execute Section //
ShellMessage( wParam,lParam )
{ If ( wParam = 1 ) ; HSHELL_WINDOWCREATED := 1 { WinGetClass, winClass, ahk_id %win% if winClass = #32770 { ControlGetPos,,,,h, FolderView, ahk_id %lParam% ControlMove, FolderView,,,,h+1, ahk_id %lParam% ControlMove, FolderView,,,,h, ahk_id %lParam% } } }
For aclui checklist: #NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist()
DllCall( "RegisterShellHookWindow", UInt,hWnd ) MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" ) OnMessage( MsgNum, "ShellMessage" )
Return ; // End of Auto-Execute Section //
ShellMessage( wParam,lParam )
{ If ( wParam = 1 ) ; HSHELL_WINDOWCREATED := 1 { WinGetClass, winClass, ahk_id %win% if winClass = #32770 { ControlGetPos,,,,h, CHECKLIST_ACLUI, ahk_id %lParam% ControlMove, CHECKLIST_ACLUI,,,,h+1, ahk_id %lParam% ControlMove, CHECKLIST_ACLUI,,,,h, ahk_id %lParam% } } }
As I said these do not work. Maybe something is up with how I referenced the main class - #32770. Im not sure. Im out of suggestions. It seems nobody got a solution for this.
|
|
|
Post by TechSalt on Oct 31, 2020 13:02:10 GMT -8
I want to replace this: with this: I don't think it is possible to replace the dialog, but can someone make a tray application that looks like the power meter from Windows 2000? (not only the icon, but also the dialog.)
|
|
|
Post by TechSalt on Oct 31, 2020 13:02:38 GMT -8
I also want the Windows 2000 power plan switcher for Windows 10.
|
|
|
Post by ihatemetro on Oct 31, 2020 14:10:27 GMT -8
I also want the Windows 2000 power plan switcher for Windows 10. You forgot to switch to your alt account.
|
|
|
Post by TechSalt on Nov 1, 2020 0:07:48 GMT -8
I also want the Windows 2000 power plan switcher for Windows 10. You forgot to switch to your alt account. ???? I renamed my account.
|
|
|
Post by travis on Nov 2, 2020 11:42:21 GMT -8
The only thing I was able to get clientedge with Window Detective is the Navigation Pane, doing it on the folder contents makes it blank, If we ever get folderoptionsx to change these dialogs maybe it would work?
|
|
|
Post by anixx on Nov 2, 2020 20:07:52 GMT -8
There is no problem to add clientedge to the folderview. The problem is, it will disappear once you change the folder and how to get the message when open/save dialogs are created.
|
|
|
Post by anixx on Nov 2, 2020 20:26:07 GMT -8
Well, if to add clientedge to the control class DUIViewWndClassName, the edge does not disappear on changing folder, and it looks descent: So, the only problem is to how to get the message when open/save dialogs are created. On my system they do not generate any shellmessage.
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Nov 9, 2020 1:58:41 GMT -8
It has moved from regular Windows 10 Home 1803 (RS4) to Windows 10 Enterprise 2016 LTSB 1607 (RS1).
Now, I think it would be better to use the classic theme or another theme.
|
|
|
Post by leet on Nov 9, 2020 3:09:51 GMT -8
I honestly haven't been bothered with what version of Windows 10 I use. It doesn't seem to affect my ability to use the classic theme. Also, I use features that require the newer versions of W10 (like WSL2). And contrary to most people on the forum, I like UWP, so in order to keep my apps up-to-date I also just upgrade to newer versions as they get released.
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Nov 9, 2020 3:14:52 GMT -8
I honestly haven't been bothered with what version of Windows 10 I use. It doesn't seem to affect my ability to use the classic theme. Also, I use features that require the newer versions of W10 (like WSL2). And contrary to most people on the forum, I like UWP, so in order to keep my apps up-to-date I also just upgrade to newer versions as they get released. When using a classic theme in Windows 10 Home 1803, an error stating that the Application Frame Host could not be found was installed, and Windows 10 1607 LTSB was used.
|
|
|
Post by ihatemetro on Nov 11, 2020 12:19:57 GMT -8
|
|
|
Post by cyprysek on Nov 19, 2020 1:34:02 GMT -8
I really don't know what is and sct because i'm new
|
|
|
Post by ihatemetro on Nov 19, 2020 5:42:20 GMT -8
SCT is simply a program that enables the Classic Theme. It can also be used to install Classic Theme elements that make it more complete (but I recommend installing them yourself).
|
|
|
Post by leet on Nov 19, 2020 12:02:25 GMT -8
SCT is simply a program that enables the Classic Theme. It can also be used to install Classic Theme elements that make it more complete (but I recommend installing them yourself). Pretty much sums it up. Note this though: SCT only changes title bars and if chosen the taskbar. Stuff like the desktop and file explorer still need work after using SCT. You can find how you do these things on the forum.
|
|
|
Post by strontium on Nov 25, 2020 7:57:28 GMT -8
The only thing I was able to get clientedge with Window Detective is the Navigation Pane, doing it on the folder contents makes it blank, If we ever get folderoptionsx to change these dialogs maybe it would work? What does folder options X have to do with anything?
|
|
|
Post by strontium on Nov 25, 2020 7:58:47 GMT -8
Well, if to add clientedge to the control class DUIViewWndClassName, the edge does not disappear on changing folder, and it looks descent: post a script
|
|
|
Post by win2k3fans on Nov 28, 2020 12:22:49 GMT -8
Question? the brandings are not changing, but this is an R2 era, the R2 Branding can i change it to Vista?
|
|