窗体1
command1_click() '显示
form2.show
unload me '也可用 me.hide
end sub
窗体2
command1_click() '返回
form1.show
unload me
end sub
VB中可以用Hide 方法和show 方法.
来实现.
显示
form2.show:form1.hide
返回
form1.show:form2.hide
就可以了
不用那么麻烦
显示按钮
from1.hide
from2.show
返回按钮
from1.show
from2.hide