I’m working on a class project (VB.Net 2003). I’m trying to program my Calculate button, and in so doing I have to convert a field value from text to number (double). Here’s what I have so far:
Private Sub btnCalculate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculate.Click
Dim pdblLength As Double
Dim pdblWidth As Double
Dim pdblHeight As Double
Dim pdblVolumeTotal As Double
txtLength = System.Convert.ToDouble
Please help!!!
Thanks,