Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've got a command button "CommandButton10" in which the formula line shows
=EMBED("Forms.CommandButton.1",""). I guess that's fairly irrelevant. The caption on the button is "Week 1". The VBA code is: -------- Private Sub CommandButton10_Click() Application.Calculation = xlCalculationManual Range("AA1").Formula = "1" Range("AG1").Formula = "1" Application.Run "CreateWeeks" End Sub ----------- Is there some coding that I can include above that will change the caption on CommandButton10 from "Week 1" to "Week 1 Complete"? Thanks, Paul |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try this
Me.CommandButton10.Caption = "Week 1 Complete" -- Regards Ron de Bruin http://www.rondebruin.nl "PCLIVE" wrote in message ... I've got a command button "CommandButton10" in which the formula line shows =EMBED("Forms.CommandButton.1",""). I guess that's fairly irrelevant. The caption on the button is "Week 1". The VBA code is: -------- Private Sub CommandButton10_Click() Application.Calculation = xlCalculationManual Range("AA1").Formula = "1" Range("AG1").Formula = "1" Application.Run "CreateWeeks" End Sub ----------- Is there some coding that I can include above that will change the caption on CommandButton10 from "Week 1" to "Week 1 Complete"? Thanks, Paul |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi PCLIVE,
Try adding the last line: If CommandButton10.Caption = "Week 1". Then CommandButton10.Caption = "Week 1 Complete" end if --- Regards, Norman "PCLIVE" wrote in message ... I've got a command button "CommandButton10" in which the formula line shows =EMBED("Forms.CommandButton.1",""). I guess that's fairly irrelevant. The caption on the button is "Week 1". The VBA code is: -------- Private Sub CommandButton10_Click() Application.Calculation = xlCalculationManual Range("AA1").Formula = "1" Range("AG1").Formula = "1" Application.Run "CreateWeeks" End Sub ----------- Is there some coding that I can include above that will change the caption on CommandButton10 from "Week 1" to "Week 1 Complete"? Thanks, Paul |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks.
That works great! "Ron de Bruin" wrote in message ... Try this Me.CommandButton10.Caption = "Week 1 Complete" -- Regards Ron de Bruin http://www.rondebruin.nl "PCLIVE" wrote in message ... I've got a command button "CommandButton10" in which the formula line shows =EMBED("Forms.CommandButton.1",""). I guess that's fairly irrelevant. The caption on the button is "Week 1". The VBA code is: -------- Private Sub CommandButton10_Click() Application.Calculation = xlCalculationManual Range("AA1").Formula = "1" Range("AG1").Formula = "1" Application.Run "CreateWeeks" End Sub ----------- Is there some coding that I can include above that will change the caption on CommandButton10 from "Week 1" to "Week 1 Complete"? Thanks, Paul |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change caption on a macro button | Excel Worksheet Functions | |||
The font of the caption for the commandbutton is illegible. | Excel Discussion (Misc queries) | |||
CommandButton caption title | Excel Programming | |||
Change CommandButton Caption | Excel Programming | |||
CommandButton.Caption | Excel Programming |