I need to dynamically create and delete 1 - N number of listboxes on a worksheet. Because the page will be changing I can't know in advance where to place the control so a statement like ... Left:=10, Top:=10, Width:=106.8, Height:=154.6 won't work. I need to be able to programmatically place controls at C1 or C55 for example.
The research I've done found only examples of static creation at a fixed location and I also haven't been able to find anything that will give me the coordinates of a cell (ex: C1 = Left:=65, Top:87).
Thanks for your help.