次のように on workbook open イベントにフックします。
Private WithEvents App As Application ' For handling events
' Event handler for when THIS workbook is opened.
Private Sub Workbook_Open()
Set App = Application ' Set App variable so we can add event handlers
App.EnableEvents = True ' Set raise events = true.
End Sub
' Event handler to handle the event when a new workbook is open (ie. when Raven Viewer exports to a new workbook in excel
Private Sub App_WorkbookOpen(ByVal Wb As Workbook)
Wb.Windows(1).Visible = False
End Sub
このスプレッドシートが開いている間、開かれているワークブックを非表示にします...しかし、ほんの一瞬、それらはユーザーに表示されます。これを防ぐ方法はありますか?
現在開いているブックがフォーカスを失うのを防ごうとしています。
ブックが VBA で開かれていません。
ありがとう。