Move the address bar below the menu bar in Windows Explorer

Page 11 of 17 FirstFirst ... 910111213 ... LastLast

  1. Posts : 234
    Windows 7
       #101

    Butters said:
    Also, the window border thing seems to have a few issues too. Whenever I navigate to a new folder, the border seems to disappear, and some folders don't have it at all when I open them. But great work!
    Needs resize after setting the attribute. Try something like ShellFolderFix who automatically resizes all Explorer windows (and remembers their positions). I use it anyway. Alternatively I can add a command to resize by 1 px after each attribute change.
      My Computer


  2. Posts : 195
    Windows 7 Professional x64
    Thread Starter
       #102

    Anixx said:
    Needs resize after setting the attribute. Try something like ShellFolderFix who automatically resizes all Explorer windows (and remembers their positions). I use it anyway. Alternatively I can add a command to resize by 1 px after each attribute change.
    Ok, works for new windows that don't have it, but it doesn't seem to work when I navigate to a new folder.
      My Computer


  3. Posts : 234
    Windows 7
       #103

    Works for me nearly always, even without ShellFolderFix. I use the option @open each folder in a new window" and without a tree. Maybe because of that.

    New folders (not resized by ShellFolderFix:

    http://storage9.static.itmages.ru/i/...ee0acd9112.png
      My Computer


  4. Posts : 234
    Windows 7
       #104

    Address Bar remover (not usable):
    Move the address bar below the menu bar in Windows Explorer Attached Files
      My Computer


  5. Posts : 195
    Windows 7 Professional x64
    Thread Starter
       #105

    Yeah, I open folders in the same window, so I bet that's it.
      My Computer


  6. Posts : 234
    Windows 7
       #106

    Try to reboot. After reboot I even cannot reproduce this problem no matter how I try. Maybe the contents of some windows is cached.
      My Computer


  7. Posts : 195
    Windows 7 Professional x64
    Thread Starter
       #107

    Hmm, maybe. This was a problem I had with Zero Dump as well, so that could be it. I'll post back when I find out.
      My Computer


  8. Posts : 195
    Windows 7 Professional x64
    Thread Starter
       #108

    Hey Anixx, is there any chance you could post up the source of those AutoHotKey scripts?
      My Computer


  9. Posts : 234
    Windows 7
       #109

    borderfix.ahk

    Code:
    #NoTrayIcon
    #NoEnv
    Gui +LastFound
    hWnd := WinExist()
     
    DllCall( "RegisterShellHookWindow", UInt,hWnd )
    MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
    OnMessage( MsgNum, "ShellMessage" )
    Return
     
    ShellMessage(wParam,lParam) {
       If (wParam = 1) ;  HSHELL_WINDOWCREATED := 1
       {
    WinGetClass, WinClass, ahk_id %lParam%
    if (WinClass = "CabinetWClass") {
    Control, ExStyle, ^0x200, FolderView, ahk_id %lParam%
       }
       }
    }
    addressbar.ahk

    Code:
    #NoEnv
    #NoTrayIcon
     
    SetControlDelay, -1
    Gui +LastFound
    hWnd := WinExist()
     
    DllCall( "RegisterShellHookWindow", UInt,hWnd )
    MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
    OnMessage( MsgNum, "ShellMessage" )
    Return
    
    ShellMessage(wParam, lParam) {
    
    WinGet, id, list, ahk_class CabinetWClass
    
    Loop, %id%
    {
    WinGetClass, WinClass, % "ahk_id " id%A_Index%
    ControlGetPos, ,y1,,,ReBarWindow321, % "ahk_id " id%A_Index%
    
    Control, Hide,, WorkerW1, % "ahk_id " id%A_Index%
    Control, Hide,, ReBarWindow321, % "ahk_id " id%A_Index%
    Control, Hide,, Address Band Root1, % "ahk_id " id%A_Index%
    Control, Hide,, ToolBarWindow321, % "ahk_id " id%A_Index%
    
    ControlGetPos,,y2,,h1,ShellTabWindowClass1, % "ahk_id " id%A_Index%
    ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, % "ahk_id " id%A_Index%
    
    }
      
    }
    Last edited by Anixx; 25 Nov 2014 at 02:41.
      My Computer


  10. Posts : 195
    Windows 7 Professional x64
    Thread Starter
       #110

    Thanks.

    Regarding the border issue, rebooting didn't seem to work. You say you're not getting the problem at all then? And you are opening folders in the same window? I wonder why it's not working for me. Like I said, whenever I open a new folder in the same window, the border just disappears.
      My Computer


 
Page 11 of 17 FirstFirst ... 910111213 ... LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 19:41.
Find Us