I need to implement a list control using MFC with the number of lines being fixed. It should Use FIFO with the number of lines being a fixed number. Is there an inbuilt option to this? Or a programmable method.
A:
If you're starting from scratch, then you could simply bind the controller's logic to something standard from STL, e.g std::list.
Kotti
2010-04-24 14:12:43
I'm using VS2008. But performance is very low when the number of lines increase. Is there a way to override the logic?
2010-04-24 15:29:26