Question: Ayuda V. SUBPROGRAMAS: SUBRUTINAS Y FUNCIONES (Determine la salida o Output) 1.Private Sub CommandButton_Click() Dim Temp As Single Temp =95 Listbox1.AddItem CtoF(Temp) ListBox1.AddItem Valor

Ayuda

V. SUBPROGRAMAS: SUBRUTINAS Y FUNCIONES (Determine la salida o Output) 1.Private Sub CommandButton_Click() Dim Temp As Single Temp =95 Listbox1.AddItem CtoF(Temp) ListBox1.AddItem " Valor de Temp" Temp End Sub Private Function CtoF( X as Single) As Single CtoF=(9/5) * X + 32 End Function 2.Private Sub Button1_Click() Dim num1 As Single num1 = 400 Call Anade ( num1) ListBox 1.AddItem " num1 =" num1 End Sub Private Sub Anade ( X1 As Single) Dim num1 As Single X1 = X1 + 200 End Sub

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Mathematics Questions!