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 Mike Lewis 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. Ricardo

    VC++ database programs bibliography needed

    Which is the best and most complete book about developing desktop database programs using VC++?? Must cover every possible aspect, including printing reports. Thanks very much, Ric.-
  2. Ricardo

    Printing reports from a database, using VC++ dialog-based program.

    I need to elaborate and print reports from a database, using a dialog-based VC++ program. I do NOT have Crystal Reports. Can anybody explain more about this? I need to have a preview of the report and then print it. Is this feature only available with SDI and MDI programs? How can I...
  3. Ricardo

    Problems Displaying Data

    I have exactly the same problem, I need to elaborate and print reports from a database, using a dialog-based VC++ program. Can anybody explain more about this? I need to have a preview of the report and then print it. Is this feature only available with single and multiple document interface...
  4. Ricardo

    Overloading [] operator for two dimensional array: How?

    Thanks JC. One of the reasons I'm trying to overload the [] operator is that I would like to index the matrix from 1 to MAX, instead of 0 to MAX-1 (this would be the case using common arrays). This object will be use in an already wrote scientific code that indexes arrays from 1 to N, so I...
  5. Ricardo

    Overloading [] operator for two dimensional array: How?

    Greetings, I need help to resolve this problem... I have a class like this: class CRealMatrix { private: double m_RealMat[MAX][MAX]; } I want to overload the [] operator, so I can access the elements of m_RealMat[][] as l-values, applying the subscript operator directly to the object...

Part and Inventory Search

Back
Top