Command Button - Changing Font

Rocky0201

Active Member
Joined
Aug 20, 2009
Messages
278
Hi.

The following code works great retrieving the interior color of a cell and setting that color as my backcolor of my CommButton:

Code:
With ThisWorkbook.Worksheets("Sheet1")
            CommandButton10.BackColor = .Range(.Cells(i, 10), .Cells(i, 10)).Interior.Color
End With

My problem is, I am also trying to retrieve the font color from the same cell on Sheet1 to set that font color on the same Commbutton10. I cannot find the appropriate syntax to make this happen.

Please let me know the appropriate code that I can use.

Thanks,
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Try...

Code:
With ThisWorkbook.Worksheets("Sheet1")
    CommandButton10.BackColor = .Range([FONT=monospace].Cells(i, 10), .Cells(i, 10)[/FONT]).Interior.Color
    [COLOR=#ff0000]CommandButton10.ForeColor = .Range([FONT=monospace].Cells(i, 10), .Cells(i, 10)[/FONT]).Font.Color[/COLOR]
End With
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,915
Members
452,366
Latest member
TePunaBloke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top