472 lines
14 KiB
ObjectPascal
472 lines
14 KiB
ObjectPascal
unit U_GetDllForm;
|
||
|
||
interface
|
||
|
||
uses
|
||
Windows, Messages, forms, OleCtnrs, DateUtils, SysUtils, ADODB, IniFiles,
|
||
dxCore, ActiveX;
|
||
|
||
function GetDllForm(App: Tapplication; FormH: hwnd; FormID: integer; Language: integer; WinStyle: integer; GCode: Pchar; GName: Pchar; DataBase: Pchar; Title: PChar; Parameters1: PChar; Parameters2: PChar; Parameters3: PChar; Parameters4: PChar; Parameters5: PChar; Parameters6: PChar; Parameters7: PChar; Parameters8: PChar; Parameters9: PChar; Parameters10: PChar; DataBaseStr: PChar): hwnd; export; stdcall;
|
||
|
||
function ConnData(): Boolean;
|
||
|
||
implementation
|
||
|
||
uses
|
||
U_DataLink, U_PieceSampleRklist, U_PieceSampleCKlist, U_PieceSampleKcList,
|
||
U_SKPieceSampleKcHZList, U_ElevatorRklist, U_ElevatorCKlist, U_ElevatorKcList,
|
||
U_SampleSendinglist, U_JYGLlist, U_JYGLlistSH, U_JYJSlist, U_JYGLlistCX;
|
||
|
||
/////////////////////////////////////////////////////////////////
|
||
// 功能说明:取Dll中得窗体 //
|
||
// 参数说明:App>>调用应用程序; //
|
||
// FormH>>调用窗口句柄 ; //
|
||
// FormID>>窗口号; //
|
||
// Language>>语言种类; //
|
||
// WinStyle>>窗口类型; //
|
||
/////////////////////////////////////////////////////////////////
|
||
var
|
||
frmSKGBRklist: TfrmSKGBRklist;
|
||
frmSKGBCKlist: TfrmSKGBCKlist;
|
||
frmSKGBGLlistlr, frmSKGBGLlistsh, frmSKGBGLlistzz: TfrmSKGBGLlist;
|
||
frmElevatorRklist: TfrmElevatorRklist;
|
||
frmElevatorCklist: TfrmElevatorCklist;
|
||
frmSKGBBlistSH: TfrmSKGBBlistSH;
|
||
frmSampleSendinglistDJ, frmSampleSendinglistGL: TfrmSampleSendinglist;
|
||
|
||
function GetDllForm(App: Tapplication; FormH: hwnd; FormID: integer; Language: integer; WinStyle: integer; GCode: Pchar; GName: Pchar; DataBase: Pchar; Title: PChar; Parameters1: PChar; Parameters2: PChar; Parameters3: PChar; Parameters4: PChar; Parameters5: PChar; Parameters6: PChar; Parameters7: PChar; Parameters8: PChar; Parameters9: PChar; Parameters10: PChar; DataBaseStr: PChar): hwnd;
|
||
var
|
||
i: Integer;
|
||
bFound: Boolean;
|
||
mnewHandle: hwnd;
|
||
mstyle: TFormStyle; // 0:子窗口; 1:普通窗口
|
||
mstate: TWindowState;
|
||
mborderstyle: TFormBorderStyle;
|
||
begin
|
||
mnewHandle := 0;
|
||
DName := PChar(GName);
|
||
DCode := PChar(GCode);
|
||
DdataBase := DataBase;
|
||
DTitCaption := Title;
|
||
DParameters1 := Parameters1;
|
||
DParameters2 := Parameters2;
|
||
DParameters3 := Parameters3;
|
||
DParameters4 := Parameters4;
|
||
DParameters5 := Parameters5;
|
||
DParameters6 := Parameters6;
|
||
DParameters7 := Parameters7;
|
||
DParameters8 := Parameters8;
|
||
DParameters9 := Parameters9;
|
||
DParameters10 := Parameters10;
|
||
|
||
MainApplication := App;
|
||
DCurHandle := FormH;
|
||
IsDelphiLanguage := Language;
|
||
|
||
Application := TApplication(App);
|
||
DCurHandle := 0;
|
||
|
||
|
||
//赋值链接字符串
|
||
SetLength(server, 255);
|
||
SetLength(dtbase, 255);
|
||
SetLength(user, 255);
|
||
SetLength(pswd, 255);
|
||
|
||
server := '47.103.192.8,7781';
|
||
// server := '.';
|
||
dtbase := 'yushangdata';
|
||
user := 'yushangsa';
|
||
// user := 'sa';
|
||
pswd := 'rightsoft@7112';
|
||
// pswd := 'rightsoft';
|
||
DConString := 'Provider=SQLOLEDB.1;Password=' + pswd + ';Persist Security Info=True;User ID=' + user + ';Initial Catalog=' + dtbase + ';Data Source=' + server;
|
||
DConString := DataBaseStr;
|
||
// DName := '鲁翔宇';
|
||
// DParameters1:='管理';
|
||
//DParameters3:='1';
|
||
if not ConnData() then
|
||
begin
|
||
result := 0;
|
||
exit;
|
||
end;
|
||
|
||
// 定义窗口类型 、状态
|
||
if WinStyle = 0 then
|
||
begin
|
||
mstyle := fsMDIChild;
|
||
mstate := wsMaximized;
|
||
mborderstyle := bsSizeable;
|
||
end
|
||
else
|
||
begin
|
||
mstyle := fsNormal;
|
||
mstate := wsNormal;
|
||
mborderstyle := bsSizeable;
|
||
end;
|
||
/////////////////////
|
||
//调用子模块窗口
|
||
case FormID of
|
||
|
||
211: //色卡挂板入库
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板入库' then
|
||
begin
|
||
BringWindowToTop(frmSKGBRklist.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBRklist := TfrmSKGBRklist.Create(application.MainForm);
|
||
with frmSKGBRklist do
|
||
begin
|
||
Title := '色卡挂板入库';
|
||
fCKName := '色卡';
|
||
canshu1 := '高权限';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBRklist.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBRklist.Handle;
|
||
end;
|
||
|
||
212: //样布入库仓库
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板入库(仓库)' then
|
||
begin
|
||
BringWindowToTop(frmSKGBRklist.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBRklist := TfrmSKGBRklist.Create(application.MainForm);
|
||
with frmSKGBRklist do
|
||
begin
|
||
Title := '色卡挂板入库(仓库)';
|
||
fCKName := '色卡';
|
||
canshu1 := '仓库';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBRklist.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBRklist.Handle;
|
||
end;
|
||
|
||
221: //色卡挂板出库
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板出库' then
|
||
begin
|
||
BringWindowToTop(frmSKGBCKlist.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBCKlist := TfrmSKGBCKlist.Create(application.MainForm);
|
||
with frmSKGBCKlist do
|
||
begin
|
||
Title := '色卡挂板出库';
|
||
fCKName := '色卡';
|
||
canshu1 := '高权限';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBCKlist.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBCKlist.Handle;
|
||
end;
|
||
311: //色卡挂板领用申请
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板领用申请(录入)' then
|
||
begin
|
||
BringWindowToTop(frmSKGBGLlistlr.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBGLlistlr := TfrmSKGBGLlist.Create(application.MainForm);
|
||
with frmSKGBGLlistlr do
|
||
begin
|
||
Title := '色卡挂板领用申请(录入)';
|
||
fCKName := '色卡';
|
||
canshu1 := '录入';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBGLlistlr.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBGLlistlr.Handle;
|
||
end;
|
||
312: //色卡挂板领用申请(组长)
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板领用申请(组长)' then
|
||
begin
|
||
BringWindowToTop(frmSKGBGLlistzz.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBGLlistzz := TfrmSKGBGLlist.Create(application.MainForm);
|
||
with frmSKGBGLlistzz do
|
||
begin
|
||
Title := '色卡挂板领用申请(组长)';
|
||
fCKName := '色卡';
|
||
canshu1 := '组长';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBGLlistzz.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBGLlistzz.Handle;
|
||
end;
|
||
321: //样品领用申请审核
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板领用申请(仓库接收)' then
|
||
begin
|
||
BringWindowToTop(frmSKGBGLlistSH.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBGLlistSH := TfrmSKGBGLlist.Create(application.MainForm);
|
||
with frmSKGBGLlistSH do
|
||
begin
|
||
Title := '色卡挂板领用申请(仓库接收)';
|
||
fCKName := '色卡';
|
||
canshu1 := '管理';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBGLlistSH.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBGLlistSH.Handle;
|
||
end;
|
||
|
||
322: //色卡挂板领用申请(仓库)
|
||
begin
|
||
bFound := FALSE;
|
||
for i := (App.MainForm.MDIChildCount - 1) downto 0 do
|
||
begin
|
||
if App.MainForm.MDIChildren[i].Caption = '色卡挂板领用申请(仓库审核)' then
|
||
begin
|
||
BringWindowToTop(frmSKGBBlistSH.Handle);
|
||
bFound := TRUE;
|
||
Break;
|
||
end;
|
||
end;
|
||
if not bFound then
|
||
begin
|
||
frmSKGBBlistSH := TfrmSKGBBlistSH.Create(application.MainForm);
|
||
with frmSKGBBlistSH do
|
||
begin
|
||
Title := '色卡挂板领用申请(仓库审核)';
|
||
fCKName := '色卡';
|
||
canshu1 := '仓库';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKGBBlistSH.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKGBBlistSH.Handle;
|
||
end;
|
||
333: //样布接收
|
||
begin
|
||
if frmJYJSlist = nil then
|
||
begin
|
||
frmJYJSlist := TfrmJYJSlist.Create(application.MainForm);
|
||
with frmJYJSlist do
|
||
begin
|
||
fCKName := '色卡';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmJYJSlist.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmJYJSlist.Handle;
|
||
end;
|
||
|
||
334: //样布仓库查询
|
||
begin
|
||
if frmJYGLlistCX = nil then
|
||
begin
|
||
frmJYGLlistCX := TfrmJYGLlistCX.Create(application.MainForm);
|
||
with frmJYGLlistCX do
|
||
begin
|
||
fCKName := '色卡';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmJYGLlistCX.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmJYGLlistCX.Handle;
|
||
end;
|
||
231: //样布库存
|
||
begin
|
||
if frmPieceSampleKcList = nil then
|
||
begin
|
||
frmPieceSampleKcList := TfrmPieceSampleKcList.Create(application.MainForm);
|
||
with frmPieceSampleKcList do
|
||
begin
|
||
fCKName := '色卡';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmPieceSampleKcList.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmPieceSampleKcList.Handle;
|
||
end;
|
||
232: //样布库存汇总
|
||
begin
|
||
if frmSKPieceSampleKcHZList = nil then
|
||
begin
|
||
frmSKPieceSampleKcHZList := TfrmSKPieceSampleKcHZList.Create(application.MainForm);
|
||
with frmSKPieceSampleKcHZList do
|
||
begin
|
||
fCKName := '色卡';
|
||
caption := Trim(Title);
|
||
FormStyle := mstyle;
|
||
windowState := mstate;
|
||
BorderStyle := mborderstyle;
|
||
//show;
|
||
end;
|
||
end
|
||
else
|
||
frmSKPieceSampleKcHZList.BringToFront;
|
||
//句柄
|
||
mnewHandle := frmSKPieceSampleKcHZList.Handle;
|
||
end;
|
||
|
||
end;
|
||
|
||
Result := mnewHandle;
|
||
end;
|
||
//===========================================================
|
||
//建立数据库连接池
|
||
//===========================================================
|
||
|
||
function ConnData(): Boolean;
|
||
var
|
||
IniFile: TIniFile;
|
||
begin
|
||
try
|
||
IniFile := TIniFile.Create(ExtractFilePath(Application.ExeName) + 'SYSTEMSET.INI');
|
||
PicSvr := IniFile.ReadString('SERVER', '服务器地址', '127.0.0.1');
|
||
UserDataFlag := IniFile.ReadString('SERVER', '服务器地址类型', '-1');
|
||
finally
|
||
IniFile.Free;
|
||
end;
|
||
if not Assigned(DataLink_SKGBhouse) then
|
||
DataLink_SKGBhouse := tDataLink_SKGBhouse.Create(Application);
|
||
try
|
||
with DataLink_SKGBhouse.ADOLink do
|
||
begin
|
||
//if not Connected then
|
||
begin
|
||
Connected := false;
|
||
ConnectionString := DConString;
|
||
LoginPrompt := false;
|
||
Connected := true;
|
||
end;
|
||
end;
|
||
Result := true;
|
||
except
|
||
Result := false;
|
||
application.MessageBox('数据库连接失败!', '错误', mb_Ok + MB_ICONERROR);
|
||
end;
|
||
|
||
end;
|
||
|
||
initialization
|
||
CoInitialize(nil);
|
||
dxUnitsLoader.Initialize;
|
||
|
||
|
||
finalization
|
||
DataLink_SKGBhouse.Free;
|
||
application := NewDllApp;
|
||
dxUnitsLoader.Finalize;
|
||
|
||
end.
|
||
|