A) Private Sub Command1_Click() Label6.Caption=Str(Val(Label4.Caption)*Val(Label5.Caption)) End Sub Private Sub HScroll1_Change() Label4.Caption=HScroll1.Value Label5.Caption=HScroll2.Value End Sub B) Private Sub Command1_Click() Label6.Caption=Str(Val(Label4.Caption)*Val(Label5.Caption)) End Sub Private Sub HScroll1_Change() Label4.Caption=HScroll1.Value End Sub Private Sub HScroll2_Change() Label5.Caption=HScroll2.Value End Sub C) Private Sub Command1_Click() Label6.Caption=HScroll1*HScroll2 End Sub Private Sub HScroll1_Change() Label4.Caption=HScroll1.Value End Sub Private Sub HScroll2_Change() Label5.Caption=HScroll2.Value End Sub D) Private Sub Command1_Click() Label4.Caption=HScroll1.Value Label5.Caption=HScroll2.Value Label6.Caption=HScroll1.Value*HScroll1.Value End Sub