try
public static decimal ToDecimal(string value)
{
if (value == null || value.Length == 0)
return 0;
if (value == null)
throw new ArgumentNullException("value");
return Decimal.Parse(value.Replace(" ", ""), NumberStyles.AllowThousands |
NumberStyles.AllowDecimalPoint | NumberStyles.AllowCurrencySymbol,
CultureInfo.CurrentCulture);
}

Signature
Misbah Arefin
https://mcp.support.microsoft.com/profile/MISBAH.AREFIN
http://www.linkedin.com/in/misbaharefin
> Hello:
>
[quoted text clipped - 10 lines]
> Thanks,
> Travis
jehugaleahsa@gmail.com - 27 Feb 2008 14:35 GMT
On Feb 27, 4:09 am, Misbah Arefin
<MisbahAre...@discussions.microsoft.com> wrote:
> try
>
[quoted text clipped - 30 lines]
>
> - Show quoted text -
That comes with too much work for something that should be built in.
jehugaleahsa@gmail.com - 27 Feb 2008 14:55 GMT
On Feb 27, 4:09 am, Misbah Arefin
<MisbahAre...@discussions.microsoft.com> wrote:
> try
>
[quoted text clipped - 30 lines]
>
> - Show quoted text -
I did what you said with the FormView and GridView Updating and
Inserting event handlers. I'm not too happy about it. I'm going to go
boil my head.
jehugaleahsa@gmail.com - 27 Feb 2008 15:13 GMT
On Feb 27, 4:09 am, Misbah Arefin
<MisbahAre...@discussions.microsoft.com> wrote:
> try
>
[quoted text clipped - 30 lines]
>
> - Show quoted text -
Oh, and thanks.