PDA

View Full Version : [SOLVED:] Good way to mark a textbox so users know it is required to fill



Ryanchris
12-27-2019, 12:29 AM
Hi all!
Simple question from a new vba user. I have forms that have several textboxes. Some the user is required to fill in, and others not. These are for surveys...

I'm just looking for an easy way to mark that a tb is required so that it's obvious and different from the optional tb's.

What is commonly used? I'd really like something with a simple code as I'm pretty new to this. Could use the opinion of frequent users and developers so BIG THANK YOU in advance !!!

paulked
12-27-2019, 05:15 AM
I tend to change the background colour on optional items and the put a check in for compulsory, as in:25699

Ryanchris
12-27-2019, 11:07 AM
Got it. That works for me.

Thank you!

paulked
12-27-2019, 11:15 AM
You're welcome :thumb

Paul_Hossler
12-27-2019, 12:02 PM
If you want to get a little fancy

25704

I also added Control tip text 'instructions'

Ryanchris
12-28-2019, 09:50 AM
I love this one. Using it! Thank you!