Re: Custom Graphic Control
You can simulate this in VB6.
You'll have to create a control array inside the container for each control you want the user to have access to.
Initially make all of them not visible.
Now, when the user wants to place a control in the container, just load another instance of the control and make it visible.
I would use SetCapture to allow the user to drag the control around.
Does this help?
Re: Custom Graphic Control [RESOLVED]
Many Thanks. I'm sure an array will do the job.
jeffow