怎样从一个窗体自动进入另一个窗体?(30分)

  • 主题发起人 主题发起人 janlon
  • 开始时间 开始时间
J

janlon

Unregistered / Unconfirmed
GUEST, unregistred user!
在初始化一个窗体的时候,如果符合条件一则进入窗体A,否则进入窗体B,这种应该怎样实现?
 
在project文件中做判斷.....
 
begin<br>&nbsp; Application.Initialize;<br>&nbsp; if &nbsp; &nbsp;xx &nbsp;then<br>&nbsp; begin &nbsp;<br>&nbsp; &nbsp; Application.CreateForm(Tform1, form1);<br>&nbsp; end else<br>&nbsp; &nbsp; Application.CreateForm(Tform2, form2);<br>&nbsp; Application.Run;<br>end.
 
也可以在create 或者show事件中中执行判断,隐藏住窗体,显示要显示的窗体
 
用变量的值来判断<br>nValue :Integer; //什么值代表调用哪个窗口你自己要清楚<br>....<br>if nValue = 1 then<br>&nbsp; // 显示一个窗口<br>if nValue = 2 then<br>&nbsp; //显示另外一个窗口<br>if nValue = 3 then<br>......<br><br>nVlalue 根据不同的条件来设定他的值<br>
 
我是用application.showmainform:=false实现的,感谢各位的帮助!
 
多人接受答案了。
 

Similar threads

回复
0
查看
867
不得闲
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
916
SUNSTONE的Delphi笔记
S
后退
顶部