Currency type in .NET

  • Thread starter Thread starter Edward Diener
  • Start date Start date
E

Edward Diener

Is there a currency type in the .net framework similar to the COM CURRENCY
type ? I have not been able to find one and before I create my own, I wanted
to check.
 
There is a CurrencyManager class used in the example below ...

//' DERIVE the source table for the Search Results Grid.
CurrencyManager cm = (CurrencyManager)this.BindingContext
this.dgSearchResults.DataSource,this.dgSearchResults.DataMember];

DataView dv = (DataView)cm.List;

for(int i=0; i < dv.Count; ++i)
{
if(this.dgSearchResults.IsSelected(i))
{
dv["check_box"] = "1";
}
}

Hope this helps,

Barry
in Oregon
 
Back
Top