pedie
Well-known Member
- Joined
- Apr 28, 2010
- Messages
- 3,875
Code:
CommandButton1.Caption = "Stop"
How can i make "Rounded Rectangle 1.Caption = "Stop" " work
it is giving me error
Thanks Ped
CommandButton1.Caption = "Stop"
With ActiveSheet.Shapes("AutoShape 1")
.TextFrame.Characters.Text = "Testing"
End With
With ActiveSheet.Shapes("AutoShape 1")
If .TextFrame.Characters.Text = "Stop" Then
Rem do something
Else
Rem do something else
End If
End With