userform üzerindeki textboxları aşagıdaki kodlarla topluyorum fakat eksi degerlerde hata veriyor.kodlarda ne gibi düzeltme yapabilirim.
Private Sub TextBox49_Change()
deg = TextBox49
deg1 = TextBox50
deg2= TextBox51
If TextBox49 = "" Then deg = 0
If TextBox50 = "" Then deg1 = 0
If TextBox51 = "" Then deg2 = 0
TextBox52 = Replace(deg * 1 + deg1 * 1 + deg2 * 1, ".", ",")
End Sub
Private Sub TextBox49_Change()
deg = TextBox49
deg1 = TextBox50
deg2= TextBox51
If TextBox49 = "" Then deg = 0
If TextBox50 = "" Then deg1 = 0
If TextBox51 = "" Then deg2 = 0
TextBox52 = Replace(deg * 1 + deg1 * 1 + deg2 * 1, ".", ",")
End Sub