This bug is not a show stopper but I am getting the 'Unused variable warning' on line 52 but as you can see the var is being assigned to on line 66... Or am I missing something?
Again, not a show stopper but I thought I would let you know.
You are missing something! You have assigned to btnAbout, otherwise you would see a "variable is never assigned any value (warning #10)", but you have not actually used it anywhere in the scope of that Sub so it is lost when the Sub exits.