VB6.0有多种类型的窗口,如何使个窗口显示或不显示

VB6.0有多种类型的窗口,如何使个窗口显示或不显示

第1个回答  2010-10-28
调用窗体事件:
form.hide 隐藏窗体
form.show 显示窗体

设置窗体属性:
Form1.Visible = True 窗体可见
Form1.Visible = False 窗体不可见本回答被提问者采纳
第2个回答  2010-10-28
Form1.Visible = True或Form1.Visible = False