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 - Mathias (Author)

Pages: 1 ... 5 6 7 8 [9] 10 11 12 13 ... 172
201
Code: [Select]
@var $res = CopyFile("d:\\temp\\abc.txt", "d:\\temp\\1.txt", "NODIALOG") should work.. something must have broken.. I will investigate and see If I can fix that

202
I want to copy some file to the same dir with a new name (manually specified, no autorename). But CopyFile function accepts only path as a target param.

Is it somehow possible to achieve the goal? If no, maybe enhance CopyFile with an additional param or implement a new function CloneFile?

That should be able to do that is Script..
So you mean if you set target name like  CopyFile ("C:\NewFile.txt" , C:\MyFile.txt" , "NODIALOG, OVERWRITE_ALL" );
It does not work ?


203
Feature Requests and Suggestions / Re: Some ideas
« on: December 10, 2022, 14:47:59 »
1) If you have files / folders selected an open MultiRename Window, the selected files are already in the MultiRename window..
Or do you mean some other rename window ?

2)That is actually a limited in Windows..  If you select many files and press enter.. the list of all of them are sent to windows with the command "open" and Windows has a limited on how many it allows to be opened.
I think there is a registry settings for this will change that value.

Put you can create a script for it. that will take a selected file and then run Execute on each of them.. sending X calls to windows. for each selected files

204
I will check if that is possible. Add it to the list

205
Feature Requests and Suggestions / Re: Multiscript StrSplit improve
« on: December 10, 2022, 14:31:43 »
I think I rather add a new split function for it

StrSplitAny($str , ";|." );

Is Option 2 really needed ? if you enter many delimiters . dont you always want it to split at the position where any of the delimiters are found ? (option 1 ?)



206
So......  I'm guessing no non-overlapping SaR using script or MS rename tools is possible then...  :(

I don't know.

I don't understand what you are doing. So I can't setup a test to test it.



207
Most keys are customizable in the main app. But it is too much work to make every key in every dialog customizable..

Ctrl+F.. and Ctrl+N or only in the Favorites Windows.
alt+backspace open the favorites window


208
right click in the favorites windows and selection option. there you can select that paths should be shown instead of namees

209
Support and Feedback / Re: Default system dialogue for copy/move
« on: November 30, 2022, 06:09:55 »
If you copy using copy and paste (Ctrl+C / Ctrl+V) Windows copy process is used.

210
Support and Feedback / Re: Problem with UserDefinedCommands.zip
« on: November 30, 2022, 06:08:15 »
I will check if it is possible to keep date/time when it rebuild the zip

Also the filename is not important., You can rename the script file if you want. the Guid used is the one set inside the .udc file
then you can easier identify what script is what.


211
Support and Feedback / Re: Windows 11 oddities
« on: November 21, 2022, 19:26:41 »
By the way, I forgot to mention - the right-click menu doesn't appear - when I right-click on anything, it (text) turns red.

I think you selected Commander Styled Mouse/Keyb setup when MC started at first startup.

Try
Menu > Configuration > Quick Loon'n'Feel Setup

If you have not done any customizations.. then select Windows Explorer Style. else select Customize and only swap mouse and maybe keyb to Windows Explorer Style

212
Support and Feedback / Re: Windows 11 oddities
« on: November 21, 2022, 07:51:13 »
There is really not much different between how WI10 and 11 works.. 11 is 10.1 with new taskbar.

That is more likely to be a MC settings thing.

Menu > Help > Backup and restore
from there you can backup all settings files from your Win10 machine and then do restore on the Win11 machine..
OR just copy the files from the config folder ( Menu > Help > Goto > Config Folder )

213

The glitch is the Row.  Seconds Row=4 should have been 5. and All the other should jump one step..


        <Text Column="0" Row="4" ColSpan="2" Text="${MCPictureProp.img_dimensions}" />
        <Text Column="0" Row="5" ColSpan="2" Text="${MCPictureProp.fnum} ${MCPictureProp.exposure} ${MCPictureProp.exposurebias}" />

        <Text Column="0" Row="6" Text="File date" />
        <Text Column="1" Row="6" Text="${core.date}" />

        <Text Column="0" Row="7" Text="Picture date"/>
        <Text Column="1" Row="7" Text="${MCPictureProp.date}" HideRowIfEmpty="True"/>

        <Text Column="0" Row="8" Text="${@,MCPictureProp.model}"/>
        <Text Column="1" Row="8" Text="${MCPictureProp.model}" HideRowIfEmpty="True"/>

214
Script / Re: How to open a specific folder in a new tab
« on: November 19, 2022, 12:13:39 »
The custom command 'MC.Explorer.NewBrowser' will open a new tab. and option for path and side and more

http://multicommander.com/docs/customcommands_list#mc.explorer.newbrowser

ex
Code: [Select]
MC.Explorer.NewBrowser PATH="C:\Bin" SIDE=LEFT

215
Support and Feedback / Re: FTP broken
« on: November 17, 2022, 13:41:31 »
Have you tried enabling Passive Mode..You are running in PORT mode and if you are behind FW/router that require the router to forward ports..
If you are behind a router it is easier to run in passive mode,, try enabling passive mode in the bookmark for the site

216
Support and Feedback / Re: FTP broken
« on: November 17, 2022, 11:49:18 »
might be something with MC.. FTP is tricky since no ftp server if the same.. they all work different.
However without a log or something that gives more information it is hard to say what is the problem.
It can be so many different things.

217
Support and Feedback / Re: FTP broken
« on: November 17, 2022, 08:23:48 »
Any error in FTP log ?

problem with FTP is that all FTP Server works different. And some FTP server need special handling to work since they are not following the FTP standard.

218
User Contributed Content / Re: Bottom button row problem
« on: November 16, 2022, 13:02:32 »
Hmm They do not change by them self without you telling it to
It depends on what setup you selected..  In commander styled setup you got F5 for copy.. and F5 for Refresh in Windows Explorer Styled setup

Menu > Configuration > Quick look'n'Feel setup
There you can quickly change to some settings. however it can overwrite some custom settings you done.. If you only want to change key.. then select customize and only select to change keyboard to command styled. then apply and restart app

219
everything can.. it just a matter of time
Currently my time to spend on MC is limited, and there are other things at the top of the list I want to do first

220
Support and Feedback / Re: drag a file over a folder
« on: November 11, 2022, 17:44:28 »
Not currently. It would clash with other behaviors

221
Support and Feedback / Re: Path in TitleBar?
« on: November 10, 2022, 12:29:14 »
The problem is now showing the path. the complex thing is to update it correct constantly. depending on what tab is in focus and such.

222
Support and Feedback / Re: Langage pack won't work (french)
« on: November 10, 2022, 09:17:20 »
in Menu > Core Configuration you can switch language.

If startup is long it is often because that some network device that it thinks are online are not online. during start up it tries to get information on all availible devices..
You can enable full app logging and then it will logout everything it does during start up and you see what it hangs on.
Normal start up is 1-2s

223
I don't see it as it does not work.. You get a warning that something is using the device because of file notification.  But it does not prevent you from just clicking continue.
If you do not want to see a warning. then navigate away from the device before format

Windows can unsubcribe on file notification it self since it has full control of the shell. But MC is not build ontop of the shell. So MC does not know that the format tool have started.

224
Yes that is because file notification is active on the filesystem, So MC gets notified and refresh the view if anything is changed on the drive.
But there is no exclusive lock.. Windows will allow the device to be unmounted anyway

225
Not sure what the problem is,
It is not an error.. It is a warning saying it is in used. but you continue and it gets unmounted  formated.. and then remounted.


Pages: 1 ... 5 6 7 8 [9] 10 11 12 13 ... 172