Z
zkktom
Unregistered / Unconfirmed
GUEST, unregistred user!
在delphi里面,我建立了一个程序。现在把代码复制如下:
/////////////////////////////////////////////////工程
Application.Initialize;
Application.CreateForm(Tfmmain, fmmain);
Application.CreateForm(TFmwait, Fmwait);
Application.CreateForm(TFmIcon, FmIcon);
Application.CreateForm(TDm, Dm);
Application.Run;
////////////////////////////////////主窗体create内容。
var
i:integer;
begin
if ParamCount>0 then
begin
czyid:=strtoint(ParamStr(1));
end; //传递程序运行参数。
SetWindowLong(Application.Handle, GWL_EXSTYLE, WS_EX_TOOLWINDOW);//隐藏
///////////////////////////////////////////////////////////////////
我现在只能让程序不出现在任务栏上,但在右下角出现个图标。
我的窗体取消了最小功能,但是当我按下WINDOWS自带的最小化按钮时(DESKTOP),
我的窗口就被隐藏了,请教高手帮我提个方法!谢谢
/////////////////////////////////////////////////工程
Application.Initialize;
Application.CreateForm(Tfmmain, fmmain);
Application.CreateForm(TFmwait, Fmwait);
Application.CreateForm(TFmIcon, FmIcon);
Application.CreateForm(TDm, Dm);
Application.Run;
////////////////////////////////////主窗体create内容。
var
i:integer;
begin
if ParamCount>0 then
begin
czyid:=strtoint(ParamStr(1));
end; //传递程序运行参数。
SetWindowLong(Application.Handle, GWL_EXSTYLE, WS_EX_TOOLWINDOW);//隐藏
///////////////////////////////////////////////////////////////////
我现在只能让程序不出现在任务栏上,但在右下角出现个图标。
我的窗体取消了最小功能,但是当我按下WINDOWS自带的最小化按钮时(DESKTOP),
我的窗口就被隐藏了,请教高手帮我提个方法!谢谢