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.-
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.