Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
626
how do i change the currency format
posted

In the grid it shows $ is there  any way i can show Euro, and i wanted to change thsi dynamically.

regards
Peter

Parents
No Data
Reply
  • 8607
    Offline posted

    Hello Peter,

    The currency is set by the culture.  You can change this programmatically by using the following code.

    System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("de-DE");

    de-DE is the culture info name (I chose German because it would show a Euro).

    Note that this will also affect things like date formats and number formatting.

    Let me know if you have any other questions about this.


    Elizabeth Albert
    Localization Engineer

Children