Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Formatting double as currency?

Formatting double as currency?

Scheduled Pinned Locked Moved C / C++ / MFC
jsontutorialquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Offline
    L Offline
    Lost User
    wrote on last edited by
    #1

    Hi All -- I'm probably overlooking a simple API or class, but: Does anyone have sample code for converting a double value to a formatted string using the currency format defined by the system? For example: double dValue = 1234567.89; CString sValue = FormatAsCurrency(dValue); // If we're in the USA, // sValue should be "$1,234,567.89". // If we're in the UK, // sValue should be "£1,234,567.89" I'd be grateful for any suggestions.

    M 1 Reply Last reply
    0
    • L Lost User

      Hi All -- I'm probably overlooking a simple API or class, but: Does anyone have sample code for converting a double value to a formatted string using the currency format defined by the system? For example: double dValue = 1234567.89; CString sValue = FormatAsCurrency(dValue); // If we're in the USA, // sValue should be "$1,234,567.89". // If we're in the UK, // sValue should be "£1,234,567.89" I'd be grateful for any suggestions.

      M Offline
      M Offline
      Mike Dunn
      wrote on last edited by
      #2

      Use wsprintf() to convert your value to a string, then call GetCurrencyFormat(). Simple! --Mike-- ================== The original message was: Hi All --

      I'm probably overlooking a simple API or class, but:

      Does anyone have sample code for converting a double value to a formatted string using the currency format defined by the system? For example:

      double dValue = 1234567.89;
      CString sValue = FormatAsCurrency(dValue);

      // If we're in the USA,
      // sValue should be "$1,234,567.89".
      // If we're in the UK,
      // sValue should be "£1,234,567.89"

      I'd be grateful for any suggestions.

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups