When creating a tree view control using CreateWindowEx why is ysTreeView32 used and not WC_TREEVIEW
Posted on 2001-07-03 18:41:00 by Ralph
because if you're coding in C, WC_TREEVIEW or any other class is defined like this:

#define WC_TREEVIEW "sysTreeView32"
you can't have that in asm, since you can't
invoke CreateWindowEx, "sysTreeView32"... 
you have to declare the string in the data section, and that's why WC_TREEVIEW won't work (unless you use some macros).
Posted on 2001-07-04 05:06:00 by fresh