Can anyone show how to add an image fill to the textbox I have inserted into a worksheet please.
Thanks
Mark
Code:
Private Sub CommandButton1_Click()
Dim myCell As Range
Dim myTextBox As textbox
Set myCell = ActiveCell
'Set Textbox Size & Position
With myCell
Set myTextBox = .Parent.TextBoxes.Add(Top:=.Top, Left:=.Left, _
Width:=130, Height:=50)
End With
'Insert Contents of UserForm ComboBox
With myTextBox
.Caption = ComboBox1.Value & Chr(10) & ComboBox2.Value & Chr(10) & Now
End With
End Sub
Thanks
Mark