I looked at the videos of Mr Kerr's library. Obviously, not being a C++
head I am missing something, but I saw a demo of a window with some
color rectangles moving around.
???
I can do that using C (not even C++) in around 30 minutes:
1: lcc-win, my compiler system, generates the C source code for an empty
window with all the stuff needed in a few seconds.
2: In the WM_CREATE message create child windows (could be buttons, for
instance)
3) In the window procedure for those windows you subclass the WM_MOVE
message and the WM_CTLCOLOR to paint the windows with whatever colors
you wish.
I just do not see the point sorry. Why would I need a complicated C++
library to do that?
Maybe Mr Kerr should put a more realistic demo in his Web site, like,
for instance, buiklding an entry form or whatever.