necesito q si un valor de un texbox sea 0 marque cero pero me marca este error...
error Conversion from string "" to type 'Double' is not valid.
If TextBox68.Text = "0" Then
'TextBox68.Text = "0"
Label30.Text = "la operacion no se puede completar "
Else
Dim metaaldia As Integer = TextBox68.Text / TextBox65.Text * TextBox61.Text
TextBox69.Text = String.Format("${0:#,#0.00}", metaaldia)
End If