Originally posted by: Horst Richter
I'm using the GfxListCtrl for a long time. No i decided to give my application the Windows XP style. Since this i've several problems with the header control. the grid is missing also the text will be drawn wrong if you select a column.
Has anybody the same problems and has a solution for this problem?
Originally posted by: Frode Gorseth
Hello.
Has anybody used this excellent GfxListCtrl as a Virtual List Control to handle a large number of items (list view with LVS_OWNERDATA using LVN_GETDISPINFO)?
Best regards,
Frode Gorseth.
it is the control i want to have.
ReplyOriginally posted by: Jason Mingl
Thanks to the author, wherever you are. This is a great little piece of code.
It needed (still needs, actually) some tweaking and I had to extend it to support background colors in rows, automatic expanding of categories etc, but it saved me some time and taught me a great deal about working with these controls.
ReplyOriginally posted by: Sunday
I created an application with a grid into my view and another grid into a dialog.
When dialog is open, and mouse cross over the grid, a tip must be displayed, but application switch to the grid in my view instead to stay into the grid in my dialog.
Can you help me to solve this problem?
Bye, SunDay.
ReplyOriginally posted by: Alexis Harper
Does anyone know how to add spin button control functionality to the CGfxListCtrl?
ReplyOriginally posted by: ZHB
void CShowBill::OnRadio2()
I used the gfxlistctrl in my program and now I meet a problem I can't slove it,I create two kinds of GetCategory
and use the radio button to exchange it,my sourcecode is below:
void CShowBill::OnRadio1()
{
// TODO: Add your control notification handler code here
if (m_lstCtrl.GetCategoryManager())
m_lstCtrl.EnableCategoryView(false);
//the m_IsRoomType is decide to change GetCategory
this->m_IsRoomType = false;
m_lstCtrl.EnableCategoryView(true);
}
{
// TODO: Add your control notification handler code here
if (m_lstCtrl.GetCategoryManager())
m_lstCtrl.EnableCategoryView(false);
this->m_IsRoomType = true;
//those is the class
m_iCatcab =-1;
m_iCatboard =-1;
m_iCatfitting =-1;
m_iCatbaishe = -1;
m_lstCtrl.EnableCategoryView(true);
}
when I set the breakpoint in those functions and trace the program ,It will be well,but if I cancle the breakpoint to run it, it will display a error about memory.
please help me
Originally posted by: BLaZe
Can someone help me with this library, When I make a project, after I include all the CGfx files in my project, I don't begin to code it and I have 233 errors, someone can help me plz ?
And also How can make a DAO DataBase ?
TIA
please reply to mpblaze@iquebec.com
Thanks
BLaZe
Originally posted by: Osama Ahmad
I found this as a very good list but I need to use it and print from it in a dialogbox.
ReplyOriginally posted by: Vish Khasarla
I have case where the list ( CGfxList ) consists of more than 60,000 rows with 10 columns and the column sort is enabled.
Given this, if I were to sort on the column or just just use Ctrl+End or "Page Up" or "Page Down" buttons, the list responds very slowly.
Is there anyway to improve the ( page up or page down )performance of the list?
-Vish
ReplyOriginally posted by: Liz
It is excellent. I have one question. How would you have handle it you were using CRecordview. Not using OnInitialUpdate function. If the recordview was a second form?