Chenging text color after submit

SicNeMeSiS

Registered User.
Local time
Today, 07:34
Joined
Sep 3, 2008
Messages
15
Hey guys,

First off thank you so very much for all of your help, you guys have been amazing. One last question on my project, might be a big one for me but hopefully easy for everyone else.
On my form I have two list boxes. One listbox holds the names of different checklists; the other listbox contains the steps within the checklist. So if you select a specific checklist, the steps for that checklist appear in the other list box. I was wondering if there was a way to change the color of just the steps in the second list box after pressing a command button. Then resetting the color back with another button.
Thank you in advance.

Sic
 
you can change the entire list with:
Code:
Me.YourListBox.ForeColor = 255    'red
 

Users who are viewing this thread

Back
Top Bottom