
When will "Find Files" window stop being modal?
Moderators: Hacker, petermad, Stefan2, white
When will "Find Files" window stop being modal?
Or whatever it calls. Sometimes search takes time and user (me
wants to use TC. Right now, it's impossible to perform search and use other TC's functions. So why can't we? What's the reason for search window to be like it is?

- fenix_productions
- Power Member
- Posts: 1979
- Joined: 2005-08-07, 13:23 UTC
- Location: Poland
- Contact:
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
When searching for files, as opposed to inside files or inside archives - then something like Everything search engine is probably your best bet.
Everythng.ini settings:
Everythng.ini settings:
AHK TCSelectFile.ahkopen_folder_path_command=$exec("C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%1")
open_file_command=$exec("C:\Program Files\AutoHotKey\AutoHotKey.exe" "c:\Scripts\AutoHotKey\TCSelectFile.ahk" "%1")
open_folder_command=$exec("C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%1")
Which will, when selecting a found file from Everything, Select that file in TC in the Left panel.fullpath = %1%
SplitPath, fullpath, gotoFile, gotoPath
Clipboard :=
Clipboard := gotoFile
ClipWait, 1
Run, "C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%gotoPath%"
WinWait, ahk_class TTOTAL_CMD
PostMessage, 0x433, 0x7F1 ;; equivalent: send command #2033, i.e ReSelectFileFromClip
PostMessage, 0x433, 0x805 ;; equivalent: send command #2053, ie GotoSelectedFile
Well, this seems like a lot of work for a workaround (not even fix!) and requires to have AHK running at all times. Kinda hoped to accomplish everything with TCBalderstrom wrote:When searching for files, as opposed to inside files or inside archives - then something like Everything search engine is probably your best bet.
Everythng.ini settings:AHK TCSelectFile.ahkopen_folder_path_command=$exec("C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%1")
open_file_command=$exec("C:\Program Files\AutoHotKey\AutoHotKey.exe" "c:\Scripts\AutoHotKey\TCSelectFile.ahk" "%1")
open_folder_command=$exec("C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%1")Which will, when selecting a found file from Everything, Select that file in TC in the Left panel.fullpath = %1%
SplitPath, fullpath, gotoFile, gotoPath
Clipboard :=
Clipboard := gotoFile
ClipWait, 1
Run, "C:\Program Files\TotalCMD\TotalCMD.exe" /O /T /L="%gotoPath%"
WinWait, ahk_class TTOTAL_CMD
PostMessage, 0x433, 0x7F1 ;; equivalent: send command #2033, i.e ReSelectFileFromClip
PostMessage, 0x433, 0x805 ;; equivalent: send command #2053, ie GotoSelectedFile

Yes, they say NO therefenix_productions wrote:2asmodeus
Maybe this will answer your question:
http://www.ghisler.ch/board/viewtopic.php?t=7956

- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
That's not running AHK at all times. that is a non-persistent script. Launches when it is called, and then ends. And yes it is a small workaround.
Everything Search Engine is Faster, it finds things basically as fast as you can type, as it indexes your drives. Except the index is incredibly small.
Though your response has taught me one thing, stop offering "workarounds". Everytime the response is one of the following:
Guess you are going with Door#1. And since the original request is 4 years old, I guess you'll be waiting a while.
Everything Search Engine is Faster, it finds things basically as fast as you can type, as it indexes your drives. Except the index is incredibly small.
Though your response has taught me one thing, stop offering "workarounds". Everytime the response is one of the following:
- I want an internal Solution,
And I'd rather do without until an internal solution is provided. - I don't want to use AHK
- That is too much hassle.
Guess you are going with Door#1. And since the original request is 4 years old, I guess you'll be waiting a while.
- Boofo
- Power Member
- Posts: 1431
- Joined: 2003-02-11, 00:29 UTC
- Location: Des Moines, IA (USA)
- Contact:
2asmodeus,
This would also work if you didn't want to use AHK:
This would also work if you didn't want to use AHK:
Code: Select all
open_folder_path_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1")
open_file_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1")
open_folder_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1")
chmod a+x /bin/laden -- Allows anyone the permission to execute /bin/laden
How do I un-overwrite all my data?
User of Total Commander
#60471 Single user license
How do I un-overwrite all my data?
User of Total Commander
#60471 Single user license
I don't want to seem ungrateful or anything - I do appreciate your responses and advices, reallyBalderstrom wrote:That's not running AHK at all times. that is a non-persistent script. Launches when it is called, and then ends. And yes it is a small workaround.
Everything Search Engine is Faster, it finds things basically as fast as you can type, as it indexes your drives. Except the index is incredibly small.
Though your response has taught me one thing, stop offering "workarounds". Everytime the response is one of the following:And with #3, it would probably take less time to download and install AHK+Everything and TRY it than it did for me to write the post detailing its use.
- I want an internal Solution,
And I'd rather do without until an internal solution is provided.- I don't want to use AHK
- That is too much hassle.
Guess you are going with Door#1. And since the original request is 4 years old, I guess you'll be waiting a while.


Also, is it possible to feed results into listbox with Everything? You know, for Multi-rename tool.
I tried Everything, by the way. It didn't work for some reason with my TC

It's fast, otherwise

Because of packer plugins probably. Christian (and TC) doesn't know if plugin may work in multi-threaded mode. So, background operations currently may be performed only for zip archives, because TC has full internal zip support (and code is multi-thread-safe).asmodeus wrote:Ah, there's one more thing that I'm not sure if should create another thread: sometimes when copying/moving files from certain locations or archives there's no Background button, so the progress window is modal. Why is that?
Code
Boofo, could you explain that, please?Boofo wrote:2asmodeus,
This would also work if you didn't want to use AHK:Code: Select all
open_folder_path_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1") open_file_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1") open_folder_command=$exec("C:\Program Files\totalcmd\TOTALCMD.EXE" /O /T /L="%1")
I suspect it's code attached to a button, but how?
Could you explain the code?
Regards, PhredE