Hi there,
I have a simple macro that draws a rectangle on the page however I'd like to change the macro so it draws the rectangle at the cursor postition. Is this relatively easy to do.
Thanks in advance,
Nick
Here's the code:-
I have a simple macro that draws a rectangle on the page however I'd like to change the macro so it draws the rectangle at the cursor postition. Is this relatively easy to do.
Thanks in advance,
Nick
Here's the code:-
Code:
Sub box()
ActiveDocument.Shapes.AddShape msoShapeRectangle, 50, 50, 100, 200
End Sub