ok, i'm trying to covert a text box info into a string then into decimal format, like this
sSalary = txtSalary.ToString
Salary = Decimal.Parse(sSalary)
i tired
Salary = Decimal.Parse(txtSalary.ToString)
no matter what i do, i keep on getting this error message at runtime "Input string was not in a correct format"
i dont understand why this is happening, i dont get an error message when compling
please help