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

沒有留言:

張貼留言

指數變化(2026.5.29) 開始透過AI做整理

 指數變化(2026.5.29) 開始透過AI做整理 一、上周焦點: 美國消費者信心指數最新狀況 美國密西根大學消費者信心指數在 2026 年 5 月降至約 44.8,較 4 月的 49.8 再次下滑,並創下自 1950 年代統計以來的新低。 報告指出,油價上漲與生活成本壓力持續...