I want to create a custom control so that I can do something like this:
<SideBySide>
<StackPanel SideBySide.Left="True">...</StackPanel>
<StackPanel SideBySide.Right="False">...</StackPanel>
</SideBySide>
I'm going to be using this all over the place, with obviously more options (sizing, etc.).
I've considered using a Panel s...
I am using MFC.
I need a control just like listControl, it has such functions:
MyListControl mylistControl = new MyListControl();
mylistControl.setDataSource(...);
mylistControl.setSQLStatement("select a, b, c, d from table where a > 3");
and system will have a listControl which is populated with the data from database, and generate t...
Hi I need to extend the CListControl class in C++/MFC, which will add several new features in the list control,
Any one have good sample code ?
Or could you please tell me how can i start it ?
Thanks in advance!
Or just write the new features and listControl into a ActiveX or COM ??
Which is better ?
...
I have a class which can change the value it returns in ToString(), but the ListBox which contains instances of this class in Items.
The ListBox doesn't show this change unless I add or remove some item to the ListBox which is when refreshes the list, how can I make it refresh the list myself?
...
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.
...
Hi!
I need to create a ListControl in MFC, each row having different number of columns.
How can I do this?
Thanks
Tarun
...