TOP

VBA-Lesson 12.1. User forms (UserForm)

To add a UserForm, we need to do the same thing when we add a new module:

After that, a form (UserForm) and a toolbar (Toolbox) will appear:

If you don't see the Properties window (Properties), make sure it is displayed and then start editing the Form name > (so you can easily find it later):

A

Form (UserForm) has its own events, just like a workbook or sheet does. To add an event, double-click on the Form (UserForm).

Now let's create two events to see how this works. The first event will determine the initial size of the Form, and the second event will increase its size by 50px when the user clicks.

The UserForm_Initialize event will fire when the Form is launched:

  1. Private Sub UserForm_Initialize()  
  2.       my_userform.Height = 100  
  3.       my_userform.Width = 100  
  4. End Sub  

To simplify the code, we can use Me instead of the Form name (because this code is in the Form we are working with):

  1. Private Sub UserForm_Initialize()  
  2.       Me.Height = 100  
  3.       Me.Width = 100  
  4. End Sub  

The second event will occur when the user clicks on the Form:

  1. Private Sub UserForm_Initialize()  
  2.       Me.Height = 100  
  3.       Me.Width = 100  
  4. End Sub  
  5.   
  6. Private Sub UserForm_Click()  
  7.       Me.Height = Me.Height + 50  
  8.       Me.Width = Me.Width + 50  
  9. End Sub  

Starting the Form (UserForm)

To run a Form in a procedure, use a Show method:

  1. Sub show_userform()  
  2.       my_userform.Show  
  3. End Sub  

Articles on the topic:

  • VBA-Lesson 11.2. Worksheet Events
  • VBA-Lesson 12.2. Controls