This may seem that I am asking a silly question to those who already know. Have you ever noticed how hard it is to find these Setting value constants to properties of some MFC control you are just starting to learn. Wouldn't it be nice, if I could just go to some tome of knowledge or because the information is too large to put in a book, then a website where you could drill down to the control and method or property you want to look up to find what setting constants are acceptable...
For example, I am working with a CListCtrl
on my CDialog
(could even be CDialogEx
if needed) and I would like to set the Verticle & Horizontal lines (or gridlines) to this control. You would think I would find an example. So far I haven't. Another one is the CListCtrl
Column Format. I found LVCFMT_LEFT
, I however am looking for something like "LVCFMT_CENTER
" and that isn't it. So I just comb the internet looking to see if I can glimpse my answer from someones question regarding something else on CListCtrl
's.
If anyone can guide me on my quest, I would appreciate it.
Maddog