View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Nick Hodge Nick Hodge is offline
external usenet poster
 
Posts: 1,173
Default Change Text Box Color When Typed In

Where did you 'put' this?

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
DTHIS
www.nickhodge.co.uk


"Paperback Writer" wrote in
message ...
I'm putting this in EXACTLY, and it isn't working. Thoughts?

Private Sub TextBox12_LostFocus()
If TextBox12.Value < "" Then
TextBox12.BackColor = RGB(255, 255, 255)
Else:
TextBox12.BackColor = RGB(255, 255, 0)
End If
End Sub


"Elkar" wrote:

This code should do the trick.

Private Sub TextBox1_LostFocus()
If TextBox1.Value < "" Then
TextBox1.BackColor = RGB(255, 255, 255)
Else:
TextBox1.BackColor = RGB(255, 255, 0)
End If
End Sub

HTH,
Elkar

"Paperback Writer" wrote:

Is it possible for a text box to be one color when blank, but change to
another color when the user types something into it?

When it's blank, I want it to be yellow.

After the user types in it, I want it to change to white.

Thoughts?