zikitrake wrote:it's going better and better, now I can sort by 'spanish' date format

.
Thanks.
and another request

:
In Total Commander, in the CMD-Line if you run a DOS command (for example:
dir *.* and you push
SHIFT+ENTER key, the DOS Windows don't close.
Can you add this option?. Thank you!
I don't know how I can do it. I use RunProgram() and it want not run DOS-
commands. Any idea what I can do ?
Hi AL90 good worked.
Also Thanks you for the Feedback.
i have a request you can say how you use 7-zip32.dll for .7z files.
Yes of course. Here a small example.
Code: Select all
Procedure.s GetSevenZipDLLVersion()
If OpenLibrary(0, AppPath$+"7-zip32.dll")
word1.w=CallFunction(0,"SevenZipGetVersion")
word2.w=CallFunction(0,"SevenZipGetSubVersion")
CloseLibrary(0)
EndIf
a$=Right(Space(4)+Str(word1),4) : b$=Right("0000"+Str(word2),4)
vers$=Left(a$,2)+"." : vers$+Right(a$,2)+"."
vers$+Left(b$,2)+"." : vers$+Right(b$,2)
ProcedureReturn LTrim(vers$)
EndProcedure