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 strongm 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: *

  1. Rolyat

    How to create tooltips?

    Check ou the following Microsoft Systems Journal article in MSDN: "Tiptoe Through the ToolTips With Our All-Encompassing ToolTip Programmer's Guide" The article talks about the Tooltip control as well as the MFC tooltips control wrapper. I hope this helps.
  2. Rolyat

    little function help please

    I see your first problem. Your code logic is skipping the first value read in your code. The second problem is you are checking to break the loop only after the file is read past the end of file. Your Main() should read as follows (I haven't tested it, but you can see the logic change): int...
  3. Rolyat

    CStringArray

    No the CStringArray class doesn't support multi-dimensional arrays. You can however create a CPtrArray or CObArray of CStringArrays, and this would get you the equivalent of a multi-dimensional CStringArray.
  4. Rolyat

    Formating a float

    If you can use printf to output formated variable values to the standard output stream. Example: ================ double dNum; dNum = 123456.7890123 printf( "Real numbers:\n\t%f %.2f %e %E\n", dNum, dNum, dNum, dNum ); ===================== note: "%.2f" - formats a...
  5. Rolyat

    error LNK2001: unresolved external symbol <===----HELP!!!

    Is nrutil.h the header to a library(*.lib) file. If so you need to add the library to you Library Modules in your project settings\Link tab (assuming VC++).
  6. Rolyat

    Greater precision than double

    Does anyone know if VC++ supports a decimal data type with a greater precision than double?
  7. Rolyat

    Multi-currency function library or SDK

    Has anyone added multi-currency support to an existing C++ application. I'm looking for any class libraries or function libraries to aid me in adding multi-currency support to a legacy VC++ application. I've already identified Rogue Wave's "SourcePro Analysis: Currency Module", but I...
  8. Rolyat

    MSVC++ Project Dependencies

    >>will the compiler environment recognize the output location of the library for inclusion in the executables build process? The answer is no. The project dependency is only a build dependency. There is a solution to your problem in the Visual Studio IDE. In the MSDN contents under...

Part and Inventory Search

Back
Top