right, I use uLister with F3, I didn't remember

so: F5" (copy), "F6" (move), "Alt+F5" (zip), F3 (preview) operate on selected files, ONLY "enter" ignores the selection.
I think it's a bit strange.
Moderators: Hacker, petermad, Stefan2, white
right, I use uLister with F3, I didn't remember
Worked?
Different operations on resource intensity. And unlike opening, the rest do not assume an array of windows or instances for SDI programs, due to which the system can potentially hang.
not tried yet
I don't understand. so Shift+F10 then enter expose the system to potential hangs?Different operations on resource intensity. And unlike opening, the rest do not assume an array of windows or instances for SDI programs, due to which the system can potentially hang.
This is done in 3 minutes. Is it more important for you to have empty talk or the result?
Above others have already explained about the system limit on the number of openings in this way. However, I wouldn't mind if this limit was controlled optionally through the settings and the ini key with a call to the dialog, which, when the specified limit is exceeded, asks whether to continue.Paul Mountit wrote: 2023-01-14, 08:03 UTCI don't understand. so Shift+F10 then enter expose the system to potential hangs?
Moderator message from: white Β» 2023-01-14, 10:03 UTC
Fla$her, please respect forum rules and be nice to each other.Fla$her wrote: 2023-01-14, 09:05 UTC This is done in 3 minutes. Is it more important for you to have empty talk or the result?
Feel free to discuss moderation in general on this board in a thread about that subject.If you want to comment on a moderator's comment or action please send him an email.
I'm afraid that in the best case you should expect solution similar to "Configuration -> Options -> Operation -> Mouse selection mode", that is - something like:Paul Mountit wrote: 2023-01-13, 10:20 UTCwell, the 15 files limit with context menu sounds good. if "enter" could work the same on selected files (no more than 15) I think it would be ok.Usher wrote: 2023-01-13, 02:38 UTC https://support.microsoft.com/en-us/help/2022295/context-menus-are-shortened-when-more-than-15-files-are-selectedThis is by design. These context menu items won't appear if selecting more than 15 items to avoid accidentally performing these actions on a large number of files.MS Support wrote: Context menus are shortened when more than 15 files are selected
Code: Select all
Open selection mode
(*) Open file under cursor in TC
( ) Pass selection to Windows Explorer
I do apologize, sometimes I have other things to do. I'm behind a firewall at office, so I can't reach the totalcmd.net.Fla$her wrote: 2023-01-14, 09:05 UTC This is done in 3 minutes. Is it more important for you to have empty talk or the result?
exactly what I think about it, and exactly what I proposed before. I hope it will be implemented in the next releaseAbove others have already explained about the system limit on the number of openings in this way. However, I wouldn't mind if this limit was controlled optionally through the settings and the ini key with a call to the dialog, which, when the specified limit is exceeded, asks whether to continue.
this is a perfectly accetable solution to meUsher wrote: 2023-01-14, 18:14 UTC The second option is the same as "Open" in context menu. Other ways aren't easy to implement.
If you mean downloading TCFS2, then you can do it by inserting a link (https://totalcmd.net/download.php?id=tcfs2), for example, here. There is also a live link from the author to the previous version.Paul Mountit wrote: 2023-01-16, 18:22 UTCI'm behind a firewall at office, so I can't reach the totalcmd.net.
Indeed, proposed. Found:Paul Mountit wrote: 2023-01-16, 18:22 UTCexactly what I think about it, and exactly what I proposed before.
Paul Mountit wrote: 2023-01-12, 15:27 UTCwell, this is easily resolved with a confirmation dialog if the files are more than 10 (or a configurable number)
finally I had the time to test this solution.Fla$her wrote: 2023-01-13, 12:08 UTCOK. I'll give you a simple solution that only involves system associations (for internal, it's more complicated).
Multiple files open and then suddenly stops opening? It sounds a little weird. At what stage does this happen? Are all the selected xls files opened for the first time or only a part of them? Does it have something to do with the number of files? In case of unsuccessful attempts, there were definitely no files with extensions from internal associations in the selection?Paul Mountit wrote: 2023-01-21, 08:33 UTCthe selected files are opened correctly in the same instance (even if already running) the first time, but then it becomes impossible to open any other file, single or multiple.
Code: Select all
'ββββββββββββββββββββββββββββββ VBS ββββββββββββββββββββββββββββββ
' Purpose: system opening of selected files
' Parameters: %WL [/max:<count>]
' /max:<count> - ask after exceeding the limit of selected objects
'βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Set A = WSH.Arguments: If A.Count = 0 Then WSH.Quit
Set FSO = CreateObject("Scripting.FileSystemObject")
Set Shell = CreateObject("WScript.Shell")
Set List = FSO.OpenTextFile(A(0),,,-1)
If A.Named.Exists("max") Then
List.Skip FSO.GetFile(A(0)).Size: Max = List.Line - 1
List.Close: If Max > CDbl(A.Named.Item("max")) Then _
If MsgBox(Max & " objects selected." & vbLf & _
"Are you sure you want to continue?", 262436, _
" System opening of selected files") <> 6 Then Quit
Set List = FSO.OpenTextFile(A(0),,,-1)
End If
Set FSO = Nothing
Do: F = List.ReadLine
If Right(F, 1) <> "\" Then Shell.Run """" & F & """"
Loop Until List.AtEndOfStream: List.Close: Quit
Sub Quit
Set List = Nothing: Set Shell = Nothing: WSH.Quit
End Sub
I open excelFla$her wrote: 2023-01-21, 09:27 UTC Multiple files open and then suddenly stops opening? It sounds a little weird. At what stage does this happen? Are all the selected xls files opened for the first time or only a part of them? Does it have something to do with the number of files? In case of unsuccessful attempts, there were definitely no files with extensions from internal associations in the selection?
no changes, still the same beahviour: it opens n-1 files from the selectionFla$her wrote: 2023-01-21, 09:27 UTCIf the code is slightly corrected, will the problem remain?
Code: Select all
'ββββββββββββββββββββββββββββββ VBS ββββββββββββββββββββββββββββββ ' Purpose: system opening of selected files ' Parameters: %WL [/max:<count>] ' /max:<count> - ask after exceeding the limit of selected objects 'βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ Set A = WSH.Arguments: If A.Count = 0 Then WSH.Quit Set FSO = CreateObject("Scripting.FileSystemObject") Set Shell = CreateObject("WScript.Shell") Set List = FSO.OpenTextFile(A(0),,,-1) If A.Named.Exists("max") Then List.Skip FSO.GetFile(A(0)).Size: Max = List.Line - 1 List.Close: If Max > CDbl(A.Named.Item("max")) Then _ If MsgBox(Max & " objects selected." & vbLf & _ "Are you sure you want to continue?", 262436, _ " System opening of selected files") <> 6 Then Quit Set List = FSO.OpenTextFile(A(0),,,-1) End If Set FSO = Nothing Do: F = List.ReadLine If Right(F, 1) <> "\" Then Shell.Run """" & F & """" Loop Until List.AtEndOfStream: List.Close: Quit Sub Quit Set List = Nothing: Set Shell = Nothing: WSH.Quit End Sub
win 10, tc 10.52Fla$her wrote: 2023-01-21, 17:39 UTC 2Paul Mountit
Hmm, strange. I have never encountered such a problem reading a list. Which version of Windows and TC? Can you check on the x32 version?