If you assign it to this macro, the user can move it, but as soon as they click on the combobox, it will spring back where it belongs.
You might also want set the properties of the combobox to Move but don't resize.
Sub stickControl()
With ActiveSheet
.Shapes(Application.Caller).Top = .Range("D4").Top
.Shapes(Application.Caller).Left = .Range("D4").Left
End With
End Sub
(BTW, is there any reason that the user doesn't know the most convenient location for the control? I always assume that the user knows what lay-out works better than I do.)
Bookmarks