CHAPTER 13
Introducing UserForms
How Excel Handles Custom Dialog Boxes
Excel makes creating custom dialog boxes for your applications relatively easy. In fact, you can duplicate the look and feel of many of Excel's dialog boxes. You use a UserForm to create a custom dialog box, and you access UserForms in the Visual Basic Editor (VBE).
This is the typical sequence you'll follow when you create a UserForm:
- Insert a new UserForm into your workbook's VBA project.
- Add controls to the UserForm.
- Adjust some of the properties of the controls that you added.
- Write event-handler procedures for some of the controls...