MrFancyteeth
Programmer
I currently use shell execute to call Winzip to perform zipping.
Now we've moved to XP - we're using compressed folders (ie no winzip installed)
know any way to create a compressed folder - extra mkdir() parameters?
and pass password etc to it similar to -
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName = "winzip32"
cAction = "open"
nret=ShellExecute(0,cAction,cFileName,' -a -s"APASSWORD" c:\test.zip c:\myfiles\*.*',"",1)
MrF
Now we've moved to XP - we're using compressed folders (ie no winzip installed)
know any way to create a compressed folder - extra mkdir() parameters?
and pass password etc to it similar to -
DECLARE INTEGER ShellExecute IN shell32.dll ;
INTEGER hndWin, ;
STRING cAction, ;
STRING cFileName, ;
STRING cParams, ;
STRING cDir, ;
INTEGER nShowWin
cFileName = "winzip32"
cAction = "open"
nret=ShellExecute(0,cAction,cFileName,' -a -s"APASSWORD" c:\test.zip c:\myfiles\*.*',"",1)
MrF