Tagged Questions
7
votes
8answers
333 views
C++, Classes, Const, and strange syntax
I was re-reading c++ primer(4th ed.) today - the section on member functions and const references etc, and I came up with this wierd little program:
using std::cout;
using std::endl;
class ...
1
vote
4answers
498 views
Delphi printing primer
I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I never programmed ...