أبو محسن
18-10-2014, 08:30 PM
بسم الله
السلام عليكم
لدي سؤال عن هذا الكود
-- Prompt the user to select files to add to the zip archive.
archive_files = Dialog.FileBrowse(true, "Files to Add", _DesktopFolder, "All Files (*.*)|*.*|", "", "dat", true, false);
-- Check to see if an error occurred, or the user cancelled.
if (archive_files[1] ~= "CANCEL") and (archive_files ~= nil) then
-- Add the chosen files to the zip archive.
Dialog.Message("Notice", archive_files[1], MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
-- Get the error code of the zip.add action.
error = Application.GetLastError();
-- If it succeeded, display a success message and open the folder. Otherwise display the error message.
if (error == 0) then
Dialog.Message("Success", "The files were successfully archived.", MB_OK, MB_ICONINFORMATION);
else
Dialog.Message("Error", _tblErrorMessages[error], MB_OK, MB_ICONEXCLAMATION);
end
end
الكود السابق.. يقوم بإضهار أسم ملف واحد, من عدة ملفات مُحددة !!
كيف يمكنني إظهار جميع الملفات برسائل متتالية.
أو نسخ المفات المُحددة إلى مسار مُحدد, وليكن سطح المكتب
وشكراً لكم :)
السلام عليكم
لدي سؤال عن هذا الكود
-- Prompt the user to select files to add to the zip archive.
archive_files = Dialog.FileBrowse(true, "Files to Add", _DesktopFolder, "All Files (*.*)|*.*|", "", "dat", true, false);
-- Check to see if an error occurred, or the user cancelled.
if (archive_files[1] ~= "CANCEL") and (archive_files ~= nil) then
-- Add the chosen files to the zip archive.
Dialog.Message("Notice", archive_files[1], MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
-- Get the error code of the zip.add action.
error = Application.GetLastError();
-- If it succeeded, display a success message and open the folder. Otherwise display the error message.
if (error == 0) then
Dialog.Message("Success", "The files were successfully archived.", MB_OK, MB_ICONINFORMATION);
else
Dialog.Message("Error", _tblErrorMessages[error], MB_OK, MB_ICONEXCLAMATION);
end
end
الكود السابق.. يقوم بإضهار أسم ملف واحد, من عدة ملفات مُحددة !!
كيف يمكنني إظهار جميع الملفات برسائل متتالية.
أو نسخ المفات المُحددة إلى مسار مُحدد, وليكن سطح المكتب
وشكراً لكم :)