1
SDK / Re: question 1
« on: June 26, 2024, 16:03:53 »
ok thank you!
MultiCommander v14.1 is released!
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.
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
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
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.
The program can now display the extension column, but cannot find the file type column.
The program has already obtained the icon for the file, so it should also be able to obtain the file type.
I hope to display the corresponding type column like explorer . thanks
Never been a request for actually showing that.. But I think it is easy to add.. See if I get time to add it to 14.1
If I get you right, you may try the following script:Code: [Select]@var $type_name;
if ( IsFolder($_FILEPROP_FILEPATH) == 0 )
{
@var $ext = PathGetFileExtPart($_FILEPROP_FILEPATH);
$type_name = RegValueGetSZ("HKCR", $ext, "");
}
else
{
$type_name = "Directory";
}
@var $_COLUMN_TYPE_DESCRIPTION = RegValueGetSZ("HKCR", $type_name, "");
Create scriptable column and add $_COLUMN_TYPE_DESCRIPTION as the Output variable.
But for unknown extension it will return empty string. I think in such cases Windows [Explorer] constructs description itself in the form "EXT File". And it depends on the OS locale. I'm not sure it's possible (or there's an easy way) to get it from OS.