Y por último... el sgte cod suma solo los enteros y no los decimales como decimal solo muestra el del nuevo numero sumado, ej 42,4000 + 33,6000 = 75,6000
Private Sub Command2_Click()
Dim S As Single 'Sección
Dim n As Integer 'Nº Conductores
Dim ST As Single 'Sección Total
Dim suma As Single
S = Text2.Text
n = Text3.Text
ST = S * n
suma = Val(Label4.Caption)
Label4.Caption = ST + suma
End Sub