How do I convert from a string to an integer? Here\'s what I tried:
Price = CInt(Int(txtPrice.Text))
I took out the Int and I
Int
You can try it:
Dim Price As Integer Int32.TryParse(txtPrice.Text, Price)