Avatar of RGuillermo
RGuillermoFlag for United States of America

asked on 

vb10 adding a label in excell

Hello Experts,
I got this sentence from a previous question.

the definition is accepted by vb10

Dim sh As Shape = objsheet.Shapes.AddLabel(msoTextOrientationHorizontal, 62.25, 97.5, 72, 72)

after that i need to change text, fonsize, fontcolor, move position.
How can I manipulate the object created lines above??

So far the following sentence is not accepted:
sh.textframe.characters.text = "AAAAAAA"

regards,
Visual Basic.NETMicrosoft Excel

Avatar of undefined
Last Comment
RGuillermo
Avatar of dlmille
dlmille
Flag of United States of America image

Your code works just fine, with slight modification.  What do you mean not accepted?

here's the modified code:
Sub test()
Dim sh As Shape
Dim objSheet As Worksheet

    Set objSheet = Sheet1
    Set sh = objSheet.Shapes.AddLabel(msoTextOrientationHorizontal, 62.25, 97.5, 72, 72)
    sh.TextFrame.Characters.Text = "AAAAAAA"
End Sub

Open in new window

See attached demonstration.

Dave
testShape-r1.xls
ASKER CERTIFIED SOLUTION
Avatar of dlmille
dlmille
Flag of United States of America image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
Avatar of Nasir Razzaq
Nasir Razzaq
Flag of United Kingdom of Great Britain and Northern Ireland image

Do you get compile time errors? Or warnings?
Avatar of RGuillermo
RGuillermo
Flag of United States of America image

ASKER

Works Perfect! Thank you very much!!
Microsoft Excel
Microsoft Excel

Microsoft Excel topics include formulas, formatting, VBA macros and user-defined functions, and everything else related to the spreadsheet user interface, including error messages.

144K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo