2022年8月11日 星期四

VBA:VISIBLE 屬性(SHEET、視窗、activex物件)

 VISIBLE,這個屬性再VB、VBA內相當多物件皆具備此一屬性,小編透過SHEET、視窗、RANGE 等物件做屬性說明。

 VISIBLE屬性,主要控制"可視"這物理特性(也就是隱藏與否可不可以看見)

EX:工作表2為例

Private Sub CommandButton1_Click()

    Sheets("工作表2").Visible = False '隱藏

End Sub


Private Sub CommandButton2_Click()

    Sheets("工作表2").Visible = True '顯示

End Sub

EX:視窗

Private Sub CommandButton1_Click()

    Application.Visible = False '隱藏

End Sub


Private Sub CommandButton2_Click()

    Application.Visible = True '顯示

End Sub

EX:activex物件,以命令按鈕為例

Private Sub CommandButton1_Click()

    CommandButton2.Visible = False '隱藏

End Sub

Private Sub CommandButton2_Click()

    CommandButton2.Visible = True '顯示

End Sub

沒有留言:

張貼留言

12 星座未來一週股市走跳|2026/8/23–8/29(台股×美股)

12 星座未來一週股市走跳|2026/8/23–8/29(台股×美股) 本報以 印度占星月亮星座 Rashi 為準(恆星黃道 Sidereal,2026 歲差約 24°13'),星曆由純 Python 天文演算法(VSOP87+章動+Lahiri 歲差)真...