The error "Object Variable or With Block Variable Not set" means that you are using an object (the bit before the dot) without it actually being an object in scope.

Presumably you have declared the clsMouseWheel variable (more specifically, object variable) somewhere that is out of scope (possibly within a particular sub), or the object has not been created yet (using Set clsMouseWheel = ????).