try to find the code to change font names, size for textbox in Excel macro, all my codes from " .font.name= to End with" shows wrong in VBA, any suggestions? thanks
Set myDocument = Worksheets(1)
Set tx_ = myDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, 382, 266, 122, 20)
tx_.TextFrame.Characters.Text = ThisWorkbook.Sheets(1).Cells(6, 8)
With tx_.TextFrame.Characters.Text
.Font.Name = "Tahoma"
.Font.Size = 10
.Font.Bold = msoTrue
End With
.TextFrame.TextRange.instead of just.TextFrame.. It would be helpfult ot know what error message you are getting - cybernetic.nomad