You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
program p_main;
|
|
|
|
uses
|
|
Forms,
|
|
u_main in 'u_main.pas' {frm_main};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := '鑫海达航运物流管理系统6.0';
|
|
Application.CreateForm(Tfrm_main, frm_main);
|
|
Application.Run;
|
|
end.
|