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

沒有留言:

張貼留言

指數變化(2024.05.17)

指數變化(2024.05.17) 上周焦點:         5/9當周焦點                          事實:fed與非農就業,引起投資市場對降息有加速,但肯定的是,fed說不加息了。                        美國密西根大學信心指數 ...