From: Giovanni Dicanio on 24 Mar 2010 10:19 "Giovanni Dicanio" <giovanniDOTdicanio(a)REMOVEMEgmail.com> ha scritto nel messaggio news:#mTWCx0yKHA.1236(a)TK2MSFTNGP06.phx.gbl... > I tried a quick test building a dialog-based MFC app with VS2010 RC. > [...] I can repro it also using a raw Win32 C++ app (no MFC). Giovanni
From: "Bill Brehm" don't want on 24 Mar 2010 10:55 There are worse things. I'm putting a scrollbar in another project and I just discovered (maybe again, can't recall) that it has a limit of 32767 positions. I'm thinking of using two, one for course and one for fine or even three, but it's not what people are used to seeing. Thanks for the update that even ten years later, CListCtrl hasn't been enhanced. No need to upgrade for that reason. "Giovanni Dicanio" <giovanniDOTdicanio(a)REMOVEMEgmail.com> wrote in message news:%23nAIA01yKHA.4492(a)TK2MSFTNGP05.phx.gbl... > "Giovanni Dicanio" <giovanniDOTdicanio(a)REMOVEMEgmail.com> ha scritto nel > messaggio news:#mTWCx0yKHA.1236(a)TK2MSFTNGP06.phx.gbl... > >> I tried a quick test building a dialog-based MFC app with VS2010 RC. >> [...] > > I can repro it also using a raw Win32 C++ app (no MFC). > > Giovanni > > >
From: Giovanni Dicanio on 24 Mar 2010 12:11 "Bill Brehm" <don't want spam> ha scritto nel messaggio news:u3rSJI2yKHA.1796(a)TK2MSFTNGP02.phx.gbl... > Thanks for the update that even ten years later, CListCtrl hasn't been > enhanced. I asked about that to some Microsoft persons, and I'll let you know if I have any news about that. > No need to upgrade for that reason. VS2010 has several advantages if compared to VC6, like better C++ standard compliance, better STL implementation, parallel libraries, etc. Giovanni
From: Giovanni Dicanio on 24 Mar 2010 13:16 "Giovanni Dicanio" <giovanniDOTdicanio(a)REMOVEMEgmail.com> ha scritto nel messaggio news:#mTWCx0yKHA.1236(a)TK2MSFTNGP06.phx.gbl... > I built the app in 64-bit and run the test: my results on Windows 7 x64 > are that the virtual list control displays properly for count <= > 100,000,000. > Instead, for count > 100,000,000 an empty list is displayed. FWIW, I tried also a simple WPF test with a listview, and the situation seems to be far worse than native. In fact, even with 100,000 items, the program takes longer to start and then hangs... Giovanni
From: Woody on 25 Mar 2010 04:01
On Mar 24, 7:55 am, "Bill Brehm" <don't want spam> wrote: > There are worse things. I'm putting a scrollbar in another project and I > just discovered (maybe again, can't recall) that it has a limit of 32767 > positions. According to VS2005 docs, the scroll bar functions support 32-bit position data; it is only the messages WM_xSCROLL that are limited to 16 bits (32767). GetScrollInfo has an example of how to use the 32-bit positions. |