Raja Kamarthi
New Member
Hello Friends,
Is there a script to set a "Combo Box" in a blinking mode?
I'm aware of the VBA (below) to set a cell in a blinking mode
Sub Auto_open()
With ThisWorkbook.Worksheets("Hiring Dashboard").Range("A1").Font
If .ColorIndex = 3 Then ' Red Text
.ColorIndex = 2 ' White Text
Else
.ColorIndex = 3 ' Red Text
End If
End With
RunWhen = Now + TimeSerial(0, 0, 1)
Application.OnTime RunWhen, "'" & ThisWorkbook.Name & "'!Auto_open", , True
End Sub
but not sure if the same can be tried on a "Combo Box".
Please share your thoughts.
Thanks,
Raja Kamarthi
Is there a script to set a "Combo Box" in a blinking mode?
I'm aware of the VBA (below) to set a cell in a blinking mode
Sub Auto_open()
With ThisWorkbook.Worksheets("Hiring Dashboard").Range("A1").Font
If .ColorIndex = 3 Then ' Red Text
.ColorIndex = 2 ' White Text
Else
.ColorIndex = 3 ' Red Text
End If
End With
RunWhen = Now + TimeSerial(0, 0, 1)
Application.OnTime RunWhen, "'" & ThisWorkbook.Name & "'!Auto_open", , True
End Sub
but not sure if the same can be tried on a "Combo Box".
Please share your thoughts.
Thanks,
Raja Kamarthi