dear all i am sending a code
i want a code which will multiple three numbers given in three
text boxes without using multiplication operator.
and show the answer in the fourth text box
Private Sub cmdbutton_Click()
Dim BOX1 As Integer 'Declaring variables
Dim BOX2 As Integer
Dim BOX3 As Integer
Dim result As Integer
Dim i As Integer
BOX1 = txt1.Text 'Assigning values of text boxes to the variables
BOX2 = txt2.Text
BOX3 = txt3.Text
For i = 1 To BOX3 ' Using For Loop
result = result + BOX2 + BOX3
NEXT
txtresult.Text = result 'Displaying the result in text box
End Sub
PLEASE TELL ME WHICH LINE CODE SHOULD BE USED INSTEAD OF THIS ONE
"result = result + BOX2 + BOX3"
WAITING FOR UR REPLY
BYE