change the currency format
change the currency format
How to change the format of the currency by code
I want to add this coordination code "##,####0.0000"
Thank you in advance
I want to add this coordination code "##,####0.0000"
Thank you in advance
Re: change the currency format
Hello,
Please try to use the following expression:
{String.Format( "{0:##,####0.0000}", value)}
Thank you.
Please try to use the following expression:
{String.Format( "{0:##,####0.0000}", value)}
Thank you.
Re: change the currency format
Please see the attached image I want access to text field inside the data
- Attachments
-
- 2015-03-30_17-51-21.png (24.77 KiB) Viewed 5082 times
Re: change the currency format
Hello,
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Re: change the currency format
I have text box How Can I change the format of its currency
Re: change the currency format
Hello,
Please try to use the following code:
Thank you.
Please try to use the following code:
Code: Select all
report.Load("");
StiText txt = report.GetComponentByName("Text1") as StiText;
txt.TextFormat = new StiCurrencyFormatService(1, 5, ",", 2, " ", 3, "$", true, true, " ");
Re: change the currency format
thank you very much good work
excellent technical support
excellent technical support
Re: change the currency format
Hello,
We are always glad to help you!
We are always glad to help you!
Re: change the currency format
The problem appeared to me in the case of the search text box 3, for example, working in aunt and quality of the report, but in the case of the amendment to the report and delete or change the name shows me the problem
Dim Text3As StiText = TryCast(Report.GetComponentByName("Text3"), StiText)
Text3.TextFormat = New StiCurrencyFormatService(1, 0, ",", Currency, ",", 3, "", True, False, " ")
Dim Text3As StiText = TryCast(Report.GetComponentByName("Text3"), StiText)
Text3.TextFormat = New StiCurrencyFormatService(1, 0, ",", Currency, ",", 3, "", True, False, " ")
Re: change the currency format
Hello,
Could you explain your issue in more details?
Thank you.
Could you explain your issue in more details?
Thank you.