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 - ncnnnn

Pages: [1] 2
1
Support and Feedback / Re: MultiUpdate fail and crash
« on: Yesterday at 02:34:50 »
The latest update program also does this. I found that it accesses a proxy from a long, long time ago. You can't find it in the settings or control panel. Other apps don't trigger this proxy either. Once it's removed, the network isn't blocked and everything runs normally.

2
It's fine now. Most of the configurations have been imported. Save the label file and then import it from the file.

Also, if the tab is locked, going to the configuration folder through the help won’t work, and there’s no prompt. It would be nice to have a prompt or to create a new tab.

3
Support and Feedback / Re: Not all export settings are selected
« on: July 28, 2026, 12:25:15 »
It also can't restore the MultiCommander_ConfigBackup.zip from 15.8. It didn't restore my directory tabs, nor did it bring back the hidden button window. The tabs didn't show the folder tree.

4
Support and Feedback / Not all export settings are selected
« on: July 28, 2026, 12:11:50 »
The export settings don’t have a 'select all' option, only 'deselect all'. If you accidentally click 'deselect all', you have to go back into the settings to export again.

No prompt when the export is complete

5
Support and Feedback / MultiUpdate fail and crash
« on: July 28, 2026, 12:10:17 »
When 'start' turns gray, click 'close'. It might crash.

6
Okay. Got it. I thought the left and right buttons controlled the folder and file list separately. Actually, the hierarchy is different. The right side is a higher level.

7
I clicked the refresh button on the file list, which is on the right. The problem is, I first clicked a node in the folder tree, and then immediately clicked the refresh button on the file list. Then it refreshed the folder tree and collapsed several expanded folder nodes, only keeping the current one.

8
Yes. I clicked the refresh button on the file list. The problem might be caused by focus. If you click the refresh button on the file list after clicking the folder tree, it will collapse the folder tree. Sometimes I also try to refresh the file list by switching folders and then switching back.

9
ok. thank you.

Recently, I have been using mapped Linux. I modified files under Windows, but it's difficult to automatically sort them to the top based on modification time. Clicking the modification time repeatedly doesn't update it. I have no choice but to use the refresh button. However, the refresh button not only refreshes the file panel, it also collapses the folder tree during synchronization.

10
before refresh:
 
 root
      a
        ----b  This is the current directory
      c
        ----d

after  refresh:

 root
     a
       ----b
     c
   
           

11
Support and Feedback / Re: lock Mapped Drive
« on: February 03, 2026, 10:05:13 »
yes ! you are right! thanks! ;)

12
Support and Feedback / lock Mapped Drive
« on: February 03, 2026, 01:10:07 »
Map a network shared folder as a drive in Windows. The MC label cannot be locked. After restarting, it will revert to the C drive.

13
Feature Requests and Suggestions / Re: scp with winscp
« on: February 03, 2026, 01:05:44 »
I hope MC supports SCP like WinSCP.

14
Feature Requests and Suggestions / scp with winscp
« on: February 02, 2026, 02:27:21 »
https://github.com/michaellukashov/Far-NetBox/

Can it be used similarly to the WinSCP lib?

15
1.  "save on exit" select remember open path
2.  new a tab.
3. reboot or poweroff logout  WINDOWS
4. multicommander not open new tab

16
SDK / Re: question 1
« on: June 26, 2024, 16:03:53 »
ok thank you!

17
SDK / question 1
« on: June 25, 2024, 15:23:30 »
1. how to use ILogger
can write log to mc'log?

2. create id  (mc how to set id)
"
// nID is the ID of the extensions that it should create. This is
extern "C" /*__declspec(dllexport)*/ PVOID APIENTRY Create( int nID )
{
  if( nID == 0 )
  {
    MCNS::MCAppExtensionSample* pExtension = new MCNS::MCAppExtensionSample();
    MCNS::IPluginInterface* pInterface = static_cast<MCNS::MCAppExtensionSample*>(pExtension);
    return pInterface;
  }

  if( nID == 1 )
  {
    MCNS::MCFilePropSample* pExtension = new MCNS::MCFilePropSample();
    MCNS::IFileProperties* pInterface = static_cast<MCNS::MCFilePropSample*>(pExtension);
    return pInterface;
  }

  return NULL;
}
"

thank your answer

I want  "File CheckSum" add   sm3.. and out  Base64Str.
or can input/paste String ,output sha256 512 sm3..(hex,base64)

18
ok👌. I see. thank you!!👍
I just want it can tip I selected which mode. :)

string strmc=“Multi commander is using the Commander Style Look and Feel”
string strwin="Multi commander is using the Window Explorer Style Look and Feel"

string strMcTips="how do you want to control Multi Commander\n"+strmc+"\n The Commander.."
string strWinTips="how do you want to control Multi Commander\n"+strwin+"\n The Commander.."

btnMc.onClick(){
{
   QuickFeelDilog.setTips(strMcTips);
}
 
btnWin.onClick(){
{
   QuickFeelDilog.setTips(strWinTips);
}
 

hope it display

“Multi commander is using the Window Explorer Style Look and Feel ”

not 

“Multi commander is using the Commander Style Look and Feel as default”


Not sure what you mean.??

Yes by default MC is using Commander Style. If you cancel that dialog on first startup, you end up with commander styled.
If you want MC mouse / keyboard be setup to be like Windows Explorer. You need to configure that your self OR select the Quick Look 'n'Feel dialog. that will change all settings to switch setup

There is no "Commander Style" is ON / OFF thing..  When switching Windows Explorer mode, a whole range of settings are modified to match how Windows Explorer works.
Mouse settings are changed to match Windows Explorer. and how selection work.  You can do all this changes your self in Core settings and Explorer Panel Settings. You can do the quick switch to Windows Explorer mode and then customize some things to work like Commander style. 
Commander Style / Windows Explorer mode is not a simple on off thing. it just a quick way to change MANY settings to change MC

19
string strmc=“Multi commander is using the Commander Style Look and Feel”
string strwin="Multi commander is using the Window Explorer Style Look and Feel"

string strMcTips="how do you want to control Multi Commander\n"+strmc+"\n The Commander.."
string strWinTips="how do you want to control Multi Commander\n"+strwin+"\n The Commander.."

string strfeel="mc";
strfell=readCfg("feel");
if(strfeel=="mc"){
   QuickFeelDilog.setTips(strMcTips);
}
if(strfeel=="win"){
   QuickFeelDilog.setTips(strWinTips);
}

btnMc.onClick(){
{
   QuickFeelDilog.setTips(strMcTips);
   writeCfg("feel","mc");
}
 
btnWin.onClick(){
{
   QuickFeelDilog.setTips(strWinTips);
  writeCfg("feel","win");
}
 

hope it display

“Multi commander is using the Window Explorer Style Look and Feel ”

not 

“Multi commander is using the Commander Style Look and Feel as default”


Not sure what you mean.??

Yes by default MC is using Commander Style. If you cancel that dialog on first startup, you end up with commander styled.
If you want MC mouse / keyboard be setup to be like Windows Explorer. You need to configure that your self OR select the Quick Look 'n'Feel dialog. that will change all settings to switch setup

20
ok. thank you.

multicommander default use farar.dll unrar *.rar.

if select "windows explorer compatibility look'n'Feel"

auto diable farar.dll and can use winrar.exe open *.rar.

like:

farar.enable=true
if(window.explorer.feel==true)
{
  farar.enable=false;
}

you mean FSRar.dll , The Rar Extension for MC ?

None of the extensions are disabled when switching mode..

Switching mode is just a quick way to switch many settings at once.

You can disabled that extension in the "Manage Plugins and Extensions" dialog.

21
multicommander default use farar.dll unrar *.rar.

if select "windows explorer compatibility look'n'Feel"

auto diable farar.dll and can use winrar.exe open *.rar.

like:

farar.enable=true
if(window.explorer.feel==true)
{
  farar.enable=false;
}

22
hope it display

“Multi commander is using the Window Explorer Style Look and Feel ”

not 

“Multi commander is using the Commander Style Look and Feel as default”


23
quick look setup  always displays "Commander style"

Even if I switch to WINDOWS EXPLORER.

So might think there was no switch and choose again.
Additionally, if "WINDOWS EXPLORER" is selected, can it automatically cancel some plugins that replace the default WINDOWS. For example, the zip copy dialog box


 :)

24
SDK / Re: buidl err
« on: June 25, 2024, 09:01:07 »
build ok .thanks

25
SDK / buidl err
« on: June 25, 2024, 04:58:21 »
WIN11 VS2022

\MCFSPluginSample\Source\FSSampleStream.cpp(340,20): error C2446: '==': no conversion from 'int' to 'const WCHAR *'

and postbuild_x64.bat return err code 4

Pages: [1] 2