Mini-Exercise #1 -- Answer
v What is the value of x after the form has been
loaded?
Option Explicit
Dim x As Integer
Private Sub squid()
    x = x+2
End Sub
Private Sub Form_Load()
    x = 0
    Call squid
End Sub
X = 2