VBSlip 11_1_2015-16



=================================Slip11_1===================================
Write a VB Program to accept the number from the user in text box and display multiplication table of that number into the list box.                      ==========================================================================
 


Private Sub cmdShow_Click()

no = Val(Text1.Text)
For i = 1 To 10 Step 1
List1.AddItem (no &" x " & i & " = " & no * i)
Next
End Sub

 

1 comment:

Note: only a member of this blog may post a comment.