Windows Template Library

Has anyone used Windows Template Library, or WTL in programming their code? I have seen the end results, and they seem pretty attractive (from the GUI point of view).
How difficult/easy is it to use? Lets say for a reasonably experienced programmer?
 
For anyone who is using plain good old C/C++, WTL/STL/ATL are a boon to work with. They are much less complicated to work with than MFC, make smaller executables, robust code and the best thing is they can help create better (read modern) user interfaces much easily than MFC.

But there are down sides too. You will not find a proper documentation for the same. No books exist for these three. Even if there are, they are hard to find. And MFC covers a much wider range of classes/controls than these.

And if you come from a MFC background, believe me porting to WTL/STL/ATL will not be less than a nightmare.

But why you want to use them anyway? Any special purpose?

It all depends on what sort of project you want to use them with.

For me, I only use VC++ with MFC, or now, my current favourite, C#. Nothing beats it. :)
 
Thanks Justin!
I have a couple of ideas for programs for which I need a GUI. I saw software which had used WTL, and looked quite good. I am experienced in Java, and to some extent in C++, but not in GUI creation.

What would you recommend for a simple application with lets say around 4-5 tabs and some buttons along with menus? Should look good and be easy to program.

Tall order???
:huh:
 
If you want easy to program, I can confirm that MFC is the way to go. All drag and drop stuff. I have no idea about WTL etc. I have never used them.
 
Back
Top