Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jungle

Pages: [1] 2 3 4 5 ... 23
1
I've never performed it myself. Try checking registry keys from this post

2
Have you set up MC as the Explorer replacement? As far as I know, it is not officially supported. And using MC in a single-pane mode is not officially recommended as well.

3
Support and Feedback / Re: MC using wrong app to open multiple files
« on: December 06, 2024, 08:30:40 »
I've configured PDF-XChange as a Launcher (Run/Open), neither viewer nor editor.
When I launch *.pdf from a "normal" panel, some lines appear in the Application Log (Debug/Full)

Code: [Select]
2024-12-06 10:26:39.056 Execute file item : "x:\path\file.pdf"
2024-12-06 10:26:39.076 ShellExecute returned without any error

When I launch *.pdf from RES1:, nothing appears in the Application log.

4
Support and Feedback / Re: MC using wrong app to open multiple files
« on: December 06, 2024, 06:32:37 »
Some more to add.

1. It seems that the way of launching depends on Explorer tabs type.
E.g. from the RES1: tab my *.pdf files are opened in MS Edge (which is the default app). And from "normal" file tab the same files are opened in configured app (PDF-XChange)

2. If custom config settings are wrong, the file will not be opened from the "normal" file panel. And it's confusing when the default file icon is used. So you see some associated icon, try to launch and nothing happens. I think either the default app should be launched or some kind of notification displayed. Maybe MC should check certain settings at startup and warn a user in a some way.

5
Support and Feedback / Re: Multi-Rename
« on: December 02, 2024, 06:17:00 »
In the "Search and Replace" panel:

1. Check RegEx option
2. In the left edit field enter "\(\d*\)\s*" (without quotes) leaving the right edit field empty
3. Optionally select Replace only name

6
Support and Feedback / Re: Issue with file search
« on: November 29, 2024, 20:41:13 »
Ok. I've performed some tests with GUI.

1. c:\temp\22;c:\temp\33 - files are found
2. "c:\temp\22";"c:\temp\33" - files are found
3. "c:\temp\22;c:\temp\33" - files are NOT found

And now the issue is reproducible in pure GUI mode without UDC.

1. Open Find files dialog
2. Enter some findable mask (files must be found for issue to happen)
3. Enter some path
4. Press start.
5. After files are found close the RES tab
6. Close Find files dialog
7. Now change path

Well, maybe not 100%, but almost each time

7
Support and Feedback / Re: Issue with file search
« on: November 29, 2024, 16:12:33 »
I've just tested on
Code: [Select]
Édition                          Windows 11 Professionnel
Version                          23H2
Build du système d’exploitation  22631.4460
Expérience                       Windows Feature Experience Pack 1000.22700.1047.0

The same result: this issue is 100% reproducible.

8
Support and Feedback / Re: Issue with file search
« on: November 29, 2024, 15:00:48 »
SEARCHIN is wrong.. one quote for them all.. not for each

With one quote search finds nothing, with the separate quotes it works.

Quote
view issue I don't know. look like after some windows update on some system, some ppl have seen that issue.. Not been able to recreate that

With usual navigation and normal GUI search I've never seen it before. This issue only appears with this command executed. Each time.

9
Support and Feedback / Issue with file search
« on: November 29, 2024, 14:38:25 »
I've created a User Defined Command:

Code: [Select]
MC.FileSearch.Search SEARCHFOR=*.txt AUTOSTART HIDE SEARCHIN="c:\temp\22";"c:\temp\33\"
and inserted it to the QuickLaunch bar. The following is 100% reproducible for me.

0. There must be some txt files in "c:\temp\22" and "c:\temp\33\" folders.
1. Press the newly created button
2. Close the results Tab
3. Then change path. It may require several attempts

Results:
1. Explorer panel Settings look ugly (see pic)
2. Some item in the file list randomly becomes blanc. Refreshing the tab randomly replaces some oter item with a blanc line. Navigation via cusror keys can't skip that line. (see gif)


MC v14.3.3042 x64 Portable on Win10 x64 Pro

10
I had problems with defining multiple search paths in the MC.FileSearch custom command's options. What is the correct syntax for that?

Code: [Select]
MC.FileSearch.Search SEARCHFOR=*.txt AUTOSTART HIDE SEARCHIN="c:\temp\22";"c:\temp\33"

11
Support and Feedback / Re: immediate searching with saved parameters
« on: November 29, 2024, 13:49:36 »
You can create some UDC with desired search params, and then put it to the user menu or on the QL bar.
MC.FileSearch supports HIDE and AUTOSTART parameters

12
Explorer panel settings > Display > Tab > Open new tab when going to new location it tab is locked. Isn't it what you're lookig for ?

13
@Mathias, yes, I apologize. It also works.
P.S. But after changing desktop.ini MC has to be restarted, refreshing Explorer panel is not enough.

14
Yes, it works. Folder icons can be chaged via desktop.ini files.
P.S. But MC doesn't seem to respect desktop.ini settings

15
You can enable "entire-row" Quick launch bar in the Core Settings > Layout. Then you can e.g. drag'n'drop exe-files on it and insert user defined commands.

16
I've disabled Drives toolbar, it is hidden, but its button still work (they actually change current drive) and their hints are displayed (see pic)

17
For me hover preview works: txt, ini, log are displayed correctly. Look at the menu Configuration > Preview Customization, maybe something is wrong there

18
Beta Releases / Re: v14.3
« on: November 15, 2024, 14:49:58 »
@AlanJB, you can take the link from
h__p://multicommander.com/updates/version.xml

19
Try this:
Code: [Select]
@var $current_dir = GetSourcePath();
@var $path_parts  = StrSplit( $current_dir, '\' );
@var $parts_count = arrayCount( $path_parts );

@var $i = $parts_count - 3;
@var $path_tail = "";

for( $i; $i < $parts_count; $i++ )
{
  $path_tail = $path_tail ^ $path_parts[$i];
}

MakeDir( $current_dir ^ 'A16'  ^ $path_tail, "LOCAL,RECURSIVE" );
MakeDir( $current_dir ^ 'AGFT' ^ $path_tail, "LOCAL,RECURSIVE" );

It is assumed that the source folder has at least 4 levels (x:\%LETTER%\%NAME%\CM4000)

20
Support and Feedback / Re: Column autosizing in List view
« on: November 05, 2024, 20:16:00 »
What about optional wordwrap, multiline ?

21
Support and Feedback / Re: How to Drop&Run?
« on: October 29, 2024, 13:55:11 »
BTW: dropping multiple files on a quick launch bar item only sets the first file as parameter, the other files are ignored.

Some programs support multiple files as params, some do not. You can customize QL button and try different settings.

22
Support and Feedback / Re: List/Index Of Files and Folders
« on: September 24, 2024, 20:53:47 »
Some options are available under Tools > To Clipboard menu. Something more advanced can potentially be done via MultiScript.

23
Beta Releases / Re: v14.2 BETA
« on: September 18, 2024, 06:56:06 »
ADDED - Tab-area will now show a folder icon if tabs in tabarea is full, When clicking on icon a popup list is shown with all tabs

When tab area is not full, folder icon is not shown, but clicking its "empty" place still invokes pop-up menu

24
There's a file MultiCommander.xml in the config folder (I use portable version, so it is in the .\Config subfolder, for installable version it should probably be somewhere in the user profile). I configured logging to Full/Debug and that's how <log> section of that file looks:

Code: [Select]
  <log>
    <application>
      <level value="2"/>
      <save value="1"/>
    </application>
    <filesystem>
      <level value="1"/>
      <save value="1"/>
      <copy value="1"/>
      <move value="1"/>
      <delete value="1"/>
      <rename value="1"/>
      <mkdir value="1"/>
      <extended value="1"/>
    </filesystem>
    <filesystemscanning>
      <show value="1"/>
      <level value="1"/>
      <extendedscanlog value="1"/>
      <save value="1"/>
    </filesystemscanning>
    <logwindow>
      <font FontName="Courier New" SizePT="9" Style="" SizePt="0"/>
      <color background="$COLOR_WINDOW" foreground="$COLOR_WINDOWTEXT"/>
    </logwindow>
  </log>

25
@Mathias (Author),
I think @Balu just wants to hide the entire header with column names, not the particular column itself.

Pages: [1] 2 3 4 5 ... 23