窗口Forms("系统设置") 中有两个 Panel 面板,每个面板中有若干个不同类型的控件,我用以下代码无法 让参数Panel 面板有面板中所有的控件 可见。求高手帮助
Forms("系统设置").Controls("参数Panel").Visible = True
Forms("系统设置").Controls("参数Panel").TopMost= True
For Each FB As WinForm.Control In Forms("系统设置").Controls("参数Panel").Children
FB.Visible = True
FB.TopMost= True
Next
Forms("系统设置").Controls("增加Panel").Visible = False
Forms("系统设置").Controls("增加Panel").BackMost = True
For Each FB As WinForm.Control In Forms("系统设置").Controls("增加Panel").Children
FB.Visible = False
FB.BackMost = True
Next