Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Lynda
 
Posts: n/a
Default how do I make checkbox color change when the value changes?

I am using a checkbox. I would like the color of the check box to change
when checked. Is that possible?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default how do I make checkbox color change when the value changes?

If the checkbox is a control toolbox checkbox, use

Private Sub CheckBox1_Click()
With Me.CheckBox1
If .Value Then
.BackColor = RGB(255, 0, 0)
Else
.BackColor = RGB(255, 255, 255)
End If
End With
End Sub


--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)

"Lynda" wrote in message
...
I am using a checkbox. I would like the color of the check box to change
when checked. Is that possible?



  #3   Report Post  
Posted to microsoft.public.excel.misc
Lynda
 
Posts: n/a
Default how do I make checkbox color change when the value changes?

Thank you!

"Bob Phillips" wrote:

If the checkbox is a control toolbox checkbox, use

Private Sub CheckBox1_Click()
With Me.CheckBox1
If .Value Then
.BackColor = RGB(255, 0, 0)
Else
.BackColor = RGB(255, 255, 255)
End If
End With
End Sub


--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)

"Lynda" wrote in message
...
I am using a checkbox. I would like the color of the check box to change
when checked. Is that possible?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I make a 3-dimensional plot in Excel? John W. Mordosky Charts and Charting in Excel 6 April 3rd 23 06:58 PM
Can I make formulas more flexible? George Excel Discussion (Misc queries) 3 November 8th 05 05:38 PM
How do I make each row add up seperatly? Please make it easy... Homeade baker and candy maker New Users to Excel 1 October 23rd 05 09:52 PM
make hidden window or workbook visible without specify the name mango Excel Worksheet Functions 1 December 30th 04 03:05 PM
make cell contents equal to null value - not blank, but empty mpierre Excel Worksheet Functions 1 December 29th 04 06:57 AM


All times are GMT +1. The time now is 11:58 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"