I have this question that really bothers me, and it has come time in my app to ask myself this question one more time. Is it good programming technique to put a massive amount of code in the Click event of a button? For example, I am writing the save routine of my app right now, and I'm putting all the save code into filSave_Click, the Save button on the menu. Is that good practice, or should I create a Save subroutine? Or should I put it all in a module, global to all forms? Thanks for the input!