Private Sub Command1_Click()
Call Estado_Refrescar60
Dim SG, SG60 As Single
Dim T As Single
Dim c, R As Integer
Dim BT As Integer
BT = 60
Call Estado_Comp
If ((a1.text <> "") And (a2.text <> "") And (t1.text <> "") And (t2.text <> "")) Then
a1.text = Format(a1.text, "#,##0.0000")
a2.text = Format(a2.text, "#,##0.0000")
t1.text = Format(t1.text, "#,##0.0")
t2.text = Format(t2.text, "#,##0.0")
tabla.Cols = (a2 - a1) * 1000
tabla.Rows = (t2 - t1) * 2 + 2
tabla.TextMatrix(0, 0) = "Temp.°F"
T = t1
R = 0
While (T <= t2)
SG = a1
c = 0
While (SG <= a2)
If (c = 0) Then
tabla.Col = c
tabla.Row = R + 1
tabla.text = T
End If
If (R = 0) Then
tabla.Col = c + 1
tabla.Row = R
tabla.text = SG
End If
SG60 = calcular_SG(SG, T)
tabla.Col = c + 1
tabla.Row = R + 1
tabla.text = SG60
tabla.text = Format(tabla.text, "#,##0.0000")
SG = SG + 0.002
c = c + 1
Wend
T = T + 0.5
R = R + 1
Wend
Else
Call Estado_Datosporc
End If
End Sub