Introduction - If you have any usage issues, please Google them yourself
program RPGViewer
(*$WARNINGS OFF*)
(*$HINTS OFF*)
uses
Forms,
UnitExample in UnitExample.pas {FormAES},
AES in AES.pas ,
ElAES in ElAES.pas
{$R*.res}
begin
Application.Initialize
Application.MainFormOnTaskbar := True
Application.Title := AES 加密算法
Application.CreateForm(TFormAES, FormAES)
Application.Run
end.