![]() |
TextBox BackColor
Hi All, I've got about 10 TextBox's on a UserForm. How can I change the BackColor of the TextBox (Double Click) with 1 Code? :confused: :confused: Lenny -- Lenny_821 ------------------------------------------------------------------------ Lenny_821's Profile: http://www.excelforum.com/member.php...o&userid=15179 View this thread: http://www.excelforum.com/showthread...hreadid=379294 |
TextBox BackColor
This is probably what you need.... Private Sub CommandButton1_Click() For Each oCtl In Me.Controls If TypeName(oCtl) = "TextBox" Then oCtl.BackColor = 255 ' change the color to red End If Next oCtl End Sub A similar query was answered by Bob Phillips in thread: http://excelforum.com/showthread.php?t=378495 Mangesh -- mangesh_yadav ------------------------------------------------------------------------ mangesh_yadav's Profile: http://www.excelforum.com/member.php...o&userid=10470 View this thread: http://www.excelforum.com/showthread...hreadid=379294 |
TextBox BackColor
Hi, Thanks for replying. What I am looking for is when I double click on the TextBox itself. Sorry about the confusion. Lenny -- Lenny_821 ------------------------------------------------------------------------ Lenny_821's Profile: http://www.excelforum.com/member.php...o&userid=15179 View this thread: http://www.excelforum.com/showthread...hreadid=379294 |
TextBox BackColor
sample:
Private Sub TextBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean) With TextBox1 Select Case .BackColor Case vbWindowBackground .BackColor = vbRed Case vbRed .BackColor = vbGreen Case vbGreen .BackColor = vbWindowBackground Case Else 'you shouldnt need this :) debug.print .backcolor stop End Select End With End Sub -- keepITcool | www.XLsupport.com | keepITcool chello nl | amsterdam Lenny_821 wrote : Hi All, I've got about 10 TextBox's on a UserForm. How can I change the BackColor of the TextBox (Double Click) with 1 Code? :confused: :confused: Lenny |
TextBox BackColor
Hi, The examples I get only refers to 1 TextBox. What i am looking for is when any TextBox is double clicked it changes the BackColor. And that in 1 code. Lenny :) :) -- Lenny_821 ------------------------------------------------------------------------ Lenny_821's Profile: http://www.excelforum.com/member.php...o&userid=15179 View this thread: http://www.excelforum.com/showthread...hreadid=379294 |
TextBox BackColor
create a class for those textboxes. described: http://www.j-walk.com/ss/excel/tips/tip44.htm -- keepITcool | www.XLsupport.com | keepITcool chello nl | amsterdam Lenny_821 wrote : Hi, The examples I get only refers to 1 TextBox. What i am looking for is when any TextBox is double clicked it changes the BackColor. And that in 1 code. Lenny :) :) |
TextBox BackColor
That's great, thanks:) Lenn -- Lenny_82 ----------------------------------------------------------------------- Lenny_821's Profile: http://www.excelforum.com/member.php...fo&userid=1517 View this thread: http://www.excelforum.com/showthread.php?threadid=37929 |
All times are GMT +1. The time now is 09:30 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com