Thread
:
editting pushbuttons
View Single Post
#
4
Posted to microsoft.public.excel.programming
Don Guillett
external usenet poster
Posts: 10,124
editting pushbuttons
Also, here is a macro I use to change many from a vlookup table.
Sub NameShapes()
Sheets("checks").Select
For Each c In [setup!a4:a15]
ActiveSheet.Shapes(c).TextFrame. _
Characters.Text = c.Offset(0, 1)
Next c
End Sub
--
Don Guillett
SalesAid Software
"Jean-Paul De Winter" wrote in message
...
Hi,
I have this excel worksheet I use for years now...
Ith has some pushbuutons to execute some code. Now I want to change the
text on this pushbuttons, but I forgot how I can edit those buttons... I
tried the combination of CTRL or Alt- enter key but... no way.
Doesn anybody know how?
Thanks
JP
Reply With Quote
Don Guillett
View Public Profile
Find all posts by Don Guillett