商品进销存管理系统 开发商品进销存管理系统是基于先进的软件和高速、大容量的硬件基础上的新型进销存管理模式

源代码在线查看: jxc.~dpr

软件大小: 2561 K
上传用户: bing1728
关键词: 进销 管理系统 大容量
下载地址: 免注册下载 普通下载 VIP

相关代码

				program jxc;
				
				uses
				  Forms,
				  FormLogin in 'FormLogin.pas' {login},
				  FormManage in 'FormManage.pas' {manage},
				  FormInfo in 'FormInfo.pas' {Info},
				  FormRights in 'FormRights.pas' {rights},
				  FormStore in 'FormStore.pas' {store},
				  FormReport in 'FormReport.pas' {report},
				  FormInput in 'FormInput.pas' {input},
				  FormOutput in 'FormOutput.pas' {output};
				
				{$R *.res}
				
				begin
				  Application.Initialize;
				  Application.Title := '进销存管理系统';
				  Application.CreateForm(Tlogin, login);
				  Application.CreateForm(Tmanage, manage);
				  Application.CreateForm(TInfo, Info);
				  Application.CreateForm(Trights, rights);
				  Application.CreateForm(Tstore, store);
				  Application.CreateForm(Treport, report);
				  Application.CreateForm(Tinput, input);
				  Application.CreateForm(Toutput, output);
				  Application.Run;
				end.
							

相关资源