Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: der7
  • Order by date
  1. der7

    Division operator that returns an integer

    Hi, I think the function floor() will work for you. It will round down to the nearest integer. Regards, David
  2. der7

    Convert CString to double

    Hi there, Thanks for posting the code. I also managed to find similar code after doing some major googling last night. Basically, if you want to convert a CString to a double the wcstod operator is the way to go as ArkM rightly said. Example - CString testString("12345.123"); double d =...
  3. der7

    Embedded Visual C++ - No Option for PocketPC AppWizard?

    Hi Ron, Thanks for the reply. Its up and running nicely now, Thanks, David
  4. der7

    Convert CString to double

    Hi uolj, Thanks for the reply. I've been trying to do it just like you suggest but I still get the error - cannot convert parameter 1 from 'class CString' to 'const char *' I've also tried doing this - CString testString("12345.6789"); double d = atof((LPCSTR)testString); but still get the...
  5. der7

    Convert CString to double

    Hi there, I've been trying to achieve this one way or another all day with no luck. I would like to convert a CString to a double. For example, if my CString has the form - CString testString("12345.6789"); I would like to be able to convert testString into a double so that e.g. double...
  6. der7

    Embedded Visual C++ - No Option for PocketPC AppWizard?

    Hi folks, I'm just about to have a go at developing a simple application for PocketPC using embedded visual C++ 4. However, when I go to create a project for PocketPC there is no option for 'WCE Pocket PC Application' or 'WCE Pocket PC MFC AppWiard'. I must be missing something, does anyone...

Part and Inventory Search

Back
Top