Recall, you have the Visual Basic code for the event procedures, so you know which events produce what output in the Immediate window.
  1. The Sorted property for the following ListBox is set to True. Using the screen snapshot shown below in conjunction with the six event procedures, determine the exact sequence of the five events that have happened since cli cking the Run button and starting up this application. You will get partial credit for having the right events, but in the wrong order.
  2. The 1st event that happened was the Form_Load event? That event only has only one line of Visual Basic code. It places the movie "La Femme Nikita" into the given ListBox control.

  3. Suppose the ListBox control is called lstMovieRentals. Give the single Visual Basic statement to place the movie "Steel Magnolias" into the lstMovieRentals control.

Private Sub cmdAddSteelMagnolias_Click()

 

 

End Sub