I'm working with ams5 on how to secure the (content) CD/DVD or files and i came up with this code.
------------------------------------------------------------------------
expire_date = "24/07/2004"
actual_date = System.GetDate(DATE_FMT_EUROPE);
if (actual_date > expire_date) then
result = Dialog.Message("Notice", "Expired, application will exit now.", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
Application.Exit();
else
result = Dialog.Message("Notice", "Welcome", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
end
-------------------------------------------------------------------------
Although this might be a good way to secure somehow the CD/DVD it will not secure the content of CD/DVD. Now here come my questions,
1-Does anybody know some better way (code) to secure the contents of CD/DVD?
2-Can ams5 produce compressed executable with the size of CD/DVD knowing that this way the contents will somehow be protected.
Thank you

