T tianhuo_soft Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-15 #1 只有一个主窗口~!~ 我想隐藏他 用visable:=false不管用!
T tseug Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-15 #2 在DPR文件中的Application.Run之前加上下面这句 Application.ShowMainForm := False;
L liyinwei Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-15 #3 program Project1; uses Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.res} begin Application.Initialize; Application.ShowMainForm := False; Application.CreateForm(TForm1, Form1); Application.Run; end.
program Project1; uses Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.res} begin Application.Initialize; Application.ShowMainForm := False; Application.CreateForm(TForm1, Form1); Application.Run; end.
G gotiger Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-16 #4 Visable:=false; ShowWindow(Handle,SW_HIDE);
F for77 Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-22 #6 呵。。。这问题挺简单的。提问前强烈建议上网搜索一下,或者下载一本大富翁的离线数据chm文件。
我 我是点点 Unregistered / Unconfirmed GUEST, unregistred user! 2008-02-29 #9 是这样吗? procedure TForm1.Button1Click(Sender: TObject); begin form1.Hide; end;