create Separator at runtime

hello,
how can i add a Separator in a container control at runtime?

this way i remove them

For Each c As Control In Me.Controls If c IsA Separator Then c.Close End If Next

and then i want add a different count of new Separators.

i use other container controls as columns (varied 3 to 5) and i want a Separator between and not the Separator inside of this CC columns.

i have a main CC <- here i have Separators
inside main CC are other CC as columns

plan b would be a custom cc as selfmade separator look.

The only way to reliably add controls at runtime for Xojo Desktop is to utilize either Control Sets or ContainerControls.

i will test Control Sets first