Creating multiple buttons with one resource
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I'm trying to create multiple buttons on a dialog page dynamically and have been able to get the buttons to appear, but i can't get the tools tips to work. Before I did this I was using static buttons and they worked fine. Now everything works except the tool tip. Could this be because I'm just using one resource button on that dialog page? m_Icon[ndx].Create(_T(""), WS_CHILD | WS_VISIBLE | WS_TABSTOP , CRect(0, 0, 0, 0), this,IDC_BTN );//IDC_BTN is the only resource on dialog created in the dialog editor Any idea to the limit of the number of objects that can be put on a page? Looks like I may have a max of 600 plus all the stuff to make the page into a x/y graph. Thanks for any help