CListBox subclassing
-
I cant get the damn list box to change the ownerdraw property when i subclass it. Part of the code :
CWnd * wnd = NULL;
while (wnd = FindWindowEx(this->m_hWnd,(wnd == NULL ? NULL : wnd->m_hWnd),"ListBox",NULL))
{
MyListBox * temp = new MyListBox();
temp->SubclassWindow(wnd->m_hWnd);
temp->ModifyStyle(0,LBS_OWNERDRAWFIXED);
TempControlAdd((CWnd*)temp); //for cleanup later
temp = NULL;
}Thanks for the Help.
Artificial Intelligence is no match for Natural Stupidity
No one can understand the truth until he drinks of coffee's frothy goodness. ~Sheik Abd-al-Kadir
I can't always be wrong ... or can I? -
I cant get the damn list box to change the ownerdraw property when i subclass it. Part of the code :
CWnd * wnd = NULL;
while (wnd = FindWindowEx(this->m_hWnd,(wnd == NULL ? NULL : wnd->m_hWnd),"ListBox",NULL))
{
MyListBox * temp = new MyListBox();
temp->SubclassWindow(wnd->m_hWnd);
temp->ModifyStyle(0,LBS_OWNERDRAWFIXED);
TempControlAdd((CWnd*)temp); //for cleanup later
temp = NULL;
}Thanks for the Help.
Artificial Intelligence is no match for Natural Stupidity
No one can understand the truth until he drinks of coffee's frothy goodness. ~Sheik Abd-al-Kadir
I can't always be wrong ... or can I?Hi there, I think the LBS_OWNERDRAW* styles can be set only upon creation of the listbox control.
-
Hi there, I think the LBS_OWNERDRAW* styles can be set only upon creation of the listbox control.
Thanks for the help.
Artificial Intelligence is no match for Natural Stupidity
No one can understand the truth until he drinks of coffee's frothy goodness. ~Sheik Abd-al-Kadir
I can't always be wrong ... or can I? -
I cant get the damn list box to change the ownerdraw property when i subclass it. Part of the code :
CWnd * wnd = NULL;
while (wnd = FindWindowEx(this->m_hWnd,(wnd == NULL ? NULL : wnd->m_hWnd),"ListBox",NULL))
{
MyListBox * temp = new MyListBox();
temp->SubclassWindow(wnd->m_hWnd);
temp->ModifyStyle(0,LBS_OWNERDRAWFIXED);
TempControlAdd((CWnd*)temp); //for cleanup later
temp = NULL;
}Thanks for the Help.
Artificial Intelligence is no match for Natural Stupidity
No one can understand the truth until he drinks of coffee's frothy goodness. ~Sheik Abd-al-Kadir
I can't always be wrong ... or can I?If anybody need a solution here is one[^]
Artificial Intelligence is no match for Natural Stupidity
No one can understand the truth until he drinks of coffee's frothy goodness. ~Sheik Abd-al-Kadir
I can't always be wrong ... or can I?