i have read the .Parse in the help but it still confusing me..
this is what i have done in the calculation..
let say: txtFoods.Text and txtDrinks.Text
where txtFoods = 50 and txtDrinks = 20
Dim Foods As Integer = txtFoods.Text
Dim Drinks As Integer = txtDrinks.Text
Dim Total As Integer
Total = Foods + Drinks
/* it works fine.. hopefully..
but using the Parse...
Code:
int someValue = int.Parse(textbox1.Text)
...will make me looks smart 
|