RACC VB - Ch. 5 Worksheet #2 | Name - |
The following procedures are part of the same VB project. Answer the questions
below based
on the following code segment.
Private Sub cmdCommand1_Click( ) Dim A As Integer Dim B As Long A = 5 B = 10 Call Subrou(A, B) Text1 = A Text2 = B End Sub |
Private Sub Subrou(ByVal X As Integer, Y As Long) |
Questions:
1. Name an event procedure from the code segment above. |