How can i blink data in textbox on userform based on condition
Solved/Closed
abdelfatah_0230
Posts
73
Registration date
Thursday July 18, 2019
Status
Member
Last seen
July 23, 2022
-
Updated on Mar 28, 2020 at 05:50 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - May 28, 2020 at 11:26 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - May 28, 2020 at 11:26 AM
Related:
- How can i blink data in textbox on userform based on condition
- Tmobile data check - Guide
- Blink app for mac - Download - Other
- Amd data change update new data to dmi ✓ - Windows 10 Forum
- Transfer data from one excel worksheet to another automatically - Guide
- Gta 5 data download for pc - Download - Action and adventure
2 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
552
Apr 20, 2020 at 12:14 PM
Apr 20, 2020 at 12:14 PM
Hi Abdel,
You will need to add If Then and ScreenUpdating for it to work:
Best regards,
Trowa
You will need to add If Then and ScreenUpdating for it to work:
Application.ScreenUpdating = True If Application.Wait(Now + TimeValue("0:00:1")) Then TextBox1.BackColor = vbRed End If If Application.Wait(Now + TimeValue("0:00:1")) Then TextBox1.BackColor = vbWhite End If
Best regards,
Trowa
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
552
May 28, 2020 at 11:26 AM
May 28, 2020 at 11:26 AM
I'm glad it work well Abdel. I also don't receive emails for reply's, I just check my messages after signing in to CCM. The bold messages are the ones that got reply's.
Best regards,
Trowa
Best regards,
Trowa
May 27, 2020 at 10:21 AM