I have a macro that exports an object to a CSV file.
I would like to display a message when the export starts and one when it is done. The first message should not require the user to click ok. So msgbox is not an option.
From the net I plucked this: Dim WshShell, BtnCode Set WshShell = WScript.CreateObject("WScript.Shell")
BtnCode = WshShell.Popup("Export started", 10)
The macro doesn't work:
Object required: 'WScript'
Note: security is set to System Access and Allow System Access.