In excel I use the following macro:
This allows CommandButton4 to appear to be floating. As the user moves from cell to cell, the button moves too.
My question is:
Can something like this be done in MS WORD?
With ActiveSheet.Shapes("CommandButton4")
.Top = Target.Offset(3).Top
.Left = Target.Offset(, 0).Left
End With
This allows CommandButton4 to appear to be floating. As the user moves from cell to cell, the button moves too.
My question is:
Can something like this be done in MS WORD?