Hii,
am new to Stimulsoft Reports and i tried to convert from double to decimal and i couldnt.
any help??(especially Stimulsoft consider any floating point number is a double )
thanks,
yasser
Convert from double to decimal
-
- Posts: 8
- Joined: Mon Dec 14, 2009 7:43 am
- Location: Alexandria
Convert from double to decimal
Yasser MOhammed ElSayed
Senior Software Engineer
Irange.net
Senior Software Engineer
Irange.net
Convert from double to decimal
Hi
Please use the following expression:
C#
Vb.Net
Thank you.
Please use the following expression:
C#
Code: Select all
Decimal decimalValue = (Decimal)doubleValue
Code: Select all
Dim DecimalValue as Decimal = CDec(DoubleValue)