Call COPY FILES window dialog from FORMS 6i
659339Sep 11 2008 — edited Sep 11 2008Hello.
I'm working with FORMS 6i and I need to make script witch will copy all files from CD to HARD DRIVE ...
Now I'm using this command to call XCOPY DOS command and this working great...
Win_Api_Shell.WinExec( 'cmd.exe /c xcopy /y /e '||xcopy_sting, WIN_API.SW_SHOWNORMAL, false );
BUT....
I have FROM & TO destinations parameters and I want to use windows copy dialog witch will be opened by button press automaticaly..
( I mean on SMALL COPY DIALOG WINDOW when you pressing CTRL+C)
TNX