Question: What will be displayed when the button is clicked? Sub btnDisplay_Click() Dim a,b,c As Double a = 5 b = 2 c= 10 Compute(a,b,c)
What will be displayed when the button is clicked? Sub btnDisplay_Click() Dim a,b,c As Double a = 5 b = 2 c= 10 Compute(a,b,c) End Sub Sub Compute (ByVal a As Double, ByVal b As Double, ByVal e As Double) Dim calc As Double calc = a*b*c txtBox.Text = calc End Sub
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
