A more "VBA OOP" way to do things like the simple application on the previous page would be to use events that are triggered by methods of the Application or Document objects rather than just by a magic procedure that is in a magic place (the startup folder) with a magic name (AutoExec).
A very simple way to define an Object is just a software component that exposes its properties and methods.
Microsoft Word has many objects with events that you can use (like the Document object and the Open event will trigger the Document_Open procedure). But you can also add your own from the VBA Toolbox.
Initially, let's write a VBA program to automate Word's own capabilities. It's pretty easy to add WordArt to your document without a VBA program. To do this manually, make sure that the WordArt toolbar is visible. Then select the text that you want to be displayed in WordArt, click the Insert WordArt button, select the style of WordArt, the font you want to use and the font size, select bold and italic if you want them, and finally position the WordArt on the page where you want it.
Whew!


