I want to remove the border from a textbox thats placed by VBA. How do I do that?
Code:
Sub Addtextbox()
Shapes.Addtextbox(msoTextOrientationHorizontal, _
Range("textbox_x"), Range("case1x2"), 40, 25) _
.TextFrame.Characters.Text = Range("TextBox")
End Sub