View Full Version : Selection Changes the Forms Color


alguzman
12-04-2001, 08:56 AM
Bascially what I want to do is this. On a Membership form I have a drop down list that puts companies in their membership catagory. If you select the catagory of Former Member the form changes color to lets say red but all the other member records stay the same. Any Help???

jwindon
12-04-2001, 05:07 PM
Add a little code you your form.

First in the AfterUpdate event of your combo:

If Me.ComboNameOfMemberCategory = "Former Member" Then

Me.Backcolor = 255
Else
End If

Also, on the OnCurrentEvent of the form:

If Me.ComboNameOfMemberCategory = "Former Member" Then

Me.Backcolor = 255
Else

Me.Backcolor = 111

End If

The "Former Member" should be the actual value of the control when "Former Member" is selected.

Hope that helps you out!

KKilfoil
12-05-2001, 08:55 AM
I suspect jwindon meant to add a line like
Me.BackColor = 111
on the line immediately after his first 'Else' statement.

alguzman
12-05-2001, 09:18 AM
Thanks to both replies.