Function EnableEvents()
Application.ScreenUpdating = True
Application.DisplayStatusBar = True
Application.EnableEvents = True
End Function
Function DisableEvents()
Application.ScreenUpdating = False
Application.DisplayStatusBar = False
Application.EnableEvents = False
End Function
This code is used to Enable/Disable events on Excel VBA
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.