T
tshad
I am using a FormatCurrency to display my Salary data and want to be able
update my record.
salaryCurrent.text = FormatCurrency(ClientReader("salaryCurrent"),2)
The problem is that the Currency may have a "$" in it from the
FormatCurrency. Is there an easy way to strip formatting information before
Something like:
.Add("@salaryCurrent",SqlDbType.Money).value =
UnFormatCurrency(salaryCurrent.text)
Obviously, there is no UnformatCurrency command.
Thanks,
Tom
update my record.
salaryCurrent.text = FormatCurrency(ClientReader("salaryCurrent"),2)
The problem is that the Currency may have a "$" in it from the
FormatCurrency. Is there an easy way to strip formatting information before
Something like:
.Add("@salaryCurrent",SqlDbType.Money).value =
UnFormatCurrency(salaryCurrent.text)
Obviously, there is no UnformatCurrency command.
Thanks,
Tom