something really simple i forgot how to do

  • Thread starter Thread starter Capuchin
  • Start date Start date
C

Capuchin

how do you put a numerical value from a text box into a decimal variable?
something like cint, but it cant be an integer because the value is decimal
 
* "Capuchin said:
how do you put a numerical value from a text box into a decimal variable?
something like cint, but it cant be an integer because the value is decimal

VB.NET's way: 'CDec'.
..NET's way: 'Decimal.Parse'.
 
Back
Top