I have added an entry ro win Explorer menu to pass the file clicked on as parameter to my aplication (something like:
"c:\myapp.exe %1" but i want to pass more than on file, i select more than one, click w/ the right button and select my option and windows shows a dialog saying that this action can
make my computer slow, cause it will open many files same time... how can I send and manege ALL files correctly?
here is the code:
"c:\myapp.exe %1" but i want to pass more than on file, i select more than one, click w/ the right button and select my option and windows shows a dialog saying that this action can
make my computer slow, cause it will open many files same time... how can I send and manege ALL files correctly?
here is the code:
Code:
RootKey := HKEY_CLASSES_ROOT;
WriteString('.ext', '', 'ext');
WriteString('EXT', '', 'EXT Files');
WriteString('EXT\Shell', '', '');
WriteString('EXT\Shell\APP_EXT', '','MyAction');
WriteString('EXT\Shell\APP_EXT\command','',ParamStr(0)+'"%1"');