Page 1 of 1

deskrule v2.3 released

Posted: 2021 Feb 26, 07:52
by nikos
better vertical rules, search hit highlighting and it gets mouse peek preview (2 buttons clicked together) before xplorer2 :)
http://zabkat.com/deskrule
Image

Re: deskrule v2.3 released

Posted: 2021 Feb 26, 15:50
by johngalt
As good as X², I might have to actually try this product out. I'm just not a searcher, though - I have the hoarder squirrel mentality, and know where everything is lol.

Re: deskrule v2.3 released

Posted: 2021 Feb 26, 16:09
by nikos
if you are a hoarder you may be interested in the "offline search capability"
https://www.zabkat.com/deskrule/catalog ... search.htm

Re: deskrule v2.3 released

Posted: 2021 Feb 26, 16:18
by johngalt
Nice. Definitely have to check that out.

Thanks!

Re: deskrule v2.3 released

Posted: 2021 Mar 09, 01:29
by astewart
johngalt wrote: 2021 Feb 26, 15:50 As good as X², I might have to actually try this product out.
If you like it, but your loyalty to xplorer² says you do everything you need there, you might be interested in this Autohotkey script.

You can invoke deskrule from the context menu in xplorer² instead of using the Find function. Then Autohotkey will copy the deskrule results back to an xplorer² scrap frame with a click of the middle button. I like to use it to save one or more deskrule search results while I do another as I would do with multiple Find scraps in xplorer² itself.

Code: Select all

; copy deskrule results to xplorer² scrap window
#IfWinActive, ahk_class ATL:DeskRule            ; deskrule
MButton::
    ControlFocus ATL:ShellItemView1             ; in file list frame
    SendInput ^a                                ; select all
    Sleep 1000
    SendInput ^c                                ; copy names
    Click                                       ; unselect
    SendMessage, 0x111, 32809, 0,, ahk_class ATL:ExplorerFrame ; WM_COMMAND, new scrap container
    SendInput ^v                                ; paste
    return
Deskrule becomes an xplorer² extension.

Alan

Re: deskrule v2.3 released

Posted: 2021 Mar 09, 06:36
by nikos
for the less technically inclined, you can drag-drop search results from deskrule into a xplorer2 scrap container too
for individual files, use right click > open containing folder menu command, which will also use xplorer2 if available

Re: deskrule v2.3 released

Posted: 2021 Mar 09, 15:25
by johngalt
astewart wrote: 2021 Mar 09, 01:29
johngalt wrote: 2021 Feb 26, 15:50 As good as X², I might have to actually try this product out.
If you like it, but your loyalty to xplorer² says you do everything you need there, you might be interested in this Autohotkey script.

You can invoke deskrule from the context menu in xplorer² instead of using the Find function. Then Autohotkey will copy the deskrule results back to an xplorer² scrap frame with a click of the middle button. I like to use it to save one or more deskrule search results while I do another as I would do with multiple Find scraps in xplorer² itself.

Code: Select all

; copy deskrule results to xplorer² scrap window
#IfWinActive, ahk_class ATL:DeskRule            ; deskrule
MButton::
    ControlFocus ATL:ShellItemView1             ; in file list frame
    SendInput ^a                                ; select all
    Sleep 1000
    SendInput ^c                                ; copy names
    Click                                       ; unselect
    SendMessage, 0x111, 32809, 0,, ahk_class ATL:ExplorerFrame ; WM_COMMAND, new scrap container
    SendInput ^v                                ; paste
    return
Deskrule becomes an xplorer² extension.

Alan
Ye gods, Alan, that's brilliant. Looks like I will owe Nikos some money here very soon, then. Bonus - I can find a way to permanently disable Windows search and get a few more of Windows' annoying TSRs off my system lol.
nikos wrote: 2021 Mar 09, 06:36 for the less technically inclined, you can drag-drop search results from deskrule into a xplorer2 scrap container too
for individual files, use right click > open containing folder menu command, which will also use xplorer2 if available
Oooh, very nice. Even better.

You're selling me on a lifetime license of DR, yanno....

Re: deskrule v2.3 released

Posted: 2021 Mar 09, 17:55
by nikos
deskrule doesn't do upgrade costs for the time being and most likely indefinitely :)

Re: deskrule v2.3 released

Posted: 2021 Mar 10, 16:33
by johngalt
Ahh, cool.