C
chemicals
I have several textboxes on a MultiPage. Each one has a Change Event
handler. I am setting all Application Events to False then reading several
values from a worksheet onto the UserForm and fillling in those textboxes.
It still calls the event handlers???? Anyone see why this is happening? It
seems that once Me.txtAttendance.Value is set the Change handler is
called.....
Here is a Change handler:
Private Sub txtAttendance_Change()
CheckRange
End Sub
Here is the code that disables events:
Sub CopyValuesFromSheet(wsName As String)
With Application
.ScreenUpdating = False
.EnableEvents = False
End With
handler. I am setting all Application Events to False then reading several
values from a worksheet onto the UserForm and fillling in those textboxes.
It still calls the event handlers???? Anyone see why this is happening? It
seems that once Me.txtAttendance.Value is set the Change handler is
called.....
Here is a Change handler:
Private Sub txtAttendance_Change()
CheckRange
End Sub
Here is the code that disables events:
Sub CopyValuesFromSheet(wsName As String)
With Application
.ScreenUpdating = False
.EnableEvents = False
End With