FIT   100
© Copyright University of Washington 1999-2000
Mini-Exercise #1
vWhat is the value of x after the form has been loaded?
v
v
Option Explicit
Dim x As Integer
Private Sub squid()
    x = x+2
End Sub
Private Sub Form_Load()
    x = 0
    Call squid
End Sub