Looper control(https://doc.windev.com/en-US/?1013099)

Is there anyway to display any widget (or some widgets) in certain box as we can do for the listcontrol, repeatedly? Try to glance an eye to the link I pasted in the subject topic in other to have an idea of what I say.
Thank so much in advance.

The ScrolledPanel class (in wx.lib.scrolledpanel) would probably be a good foundation to build upon.

Okay, I’ll try it. I just wanted to know, because I’d not like to do something that already exist. At least thanks.

-------- Message d’origine --------

You can always re-position widgets. So when the user scrolls down, take the first widgets and move them from the top of the ScrolledPanel to the bottom to display another dataset. Otherwise, if you constantly increase the number of widgets, you might run into performance problems.

Alternatively, you could use a grid and implement custom renderers and editors.

Yes I think it’s better to do it perhaps with dataGrid renderer. Thanks