Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Oct 28, 2020 0:58:26 GMT -8
The NavBar Remover (By anixx) I wrote earlier did not have a separator line. If there is a divider in the window search, it is like Windows 98 or 2000.
|
|
|
Post by travis on Oct 28, 2020 7:26:16 GMT -8
The NavBar Remover (By anixx) I wrote earlier did not have a separator line. If there is a divider in the window search, it is like Windows 98 or 2000.
If you want to get that back, use this AHK code from R.O.B.
#NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist() SetControlDelay, -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") {
Control, Style, +0x800000, ReBarWindow322, ahk_id %lParam% Control, Style, +0x00000400, ReBarWindow322, ahk_id %lParam%
ControlGetPos,,,,h, ReBarWindow322, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h+1, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h, ahk_id %lParam%
} } }
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Oct 28, 2020 22:53:13 GMT -8
The NavBar Remover (By anixx) I wrote earlier did not have a separator line. If there is a divider in the window search, it is like Windows 98 or 2000.
If you want to get that back, use this AHK code from R.O.B.
#NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist() SetControlDelay, -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") {
Control, Style, +0x800000, ReBarWindow322, ahk_id %lParam% Control, Style, +0x00000400, ReBarWindow322, ahk_id %lParam%
ControlGetPos,,,,h, ReBarWindow322, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h+1, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h, ahk_id %lParam%
} } }
Do you have a download link?
|
|
|
Post by travis on Oct 29, 2020 7:54:03 GMT -8
If you want to get that back, use this AHK code from R.O.B.
#NoTrayIcon #NoEnv Gui +LastFound hWnd := WinExist() SetControlDelay, -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") {
Control, Style, +0x800000, ReBarWindow322, ahk_id %lParam% Control, Style, +0x00000400, ReBarWindow322, ahk_id %lParam%
ControlGetPos,,,,h, ReBarWindow322, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h+1, ahk_id %lParam% ControlMove, ReBarWindow322,,,,h, ahk_id %lParam%
} } }
Do you have a download link? Yeah, here's the compiled executable.
|
|
Deleted
Deleted Member
Posts: 0
|
Post by Deleted on Oct 29, 2020 13:33:54 GMT -8
Thank you. I'm going to need an executable on Windows 10 1803.
|
|