chuckles1066
Banned
- Joined
- Dec 20, 2004
- Messages
- 372
I'm putting together a macro and have been asked if it's possible to have a complete audit of events recorded.
Easy enough, the first stage of my macro will ask them if they wish to create a log file, if they click Yes then a Boolean flag (logfileyorn) is set to true.
But for everything that then happens, I guess I will have to code something like
or even
and go on to use the Print # command to write to a text file
Has anyone ever done anything similar?
Does it slow the macro down? What's the ultimate solution?
TIA.
Easy enough, the first stage of my macro will ask them if they wish to create a log file, if they click Yes then a Boolean flag (logfileyorn) is set to true.
But for everything that then happens, I guess I will have to code something like
Code:
If logfileyorn Then........
Code:
Select case (logfileyorn).........
Has anyone ever done anything similar?
Does it slow the macro down? What's the ultimate solution?
TIA.