-----Original Message-----
Could you please tell me what the code should look like
that I would write in the After_Update event of the
Combobox to set the picture property of the form based
on a choice in the combobox.
I'm a novice with code.
Thanks
Nevermind, I guess I'm not as dumb as I thought.
I set the Form's OnCurrent to an Event Procedure
with the following code:
' if termed status -change background picture
If Me!Combo116 = "3" Then
Me.Picture = "G:\Revenue\Provider\septemberrose.bmp"
Else
Me.Picture = "G:\Revenue\Provider\emerald.bmp"
End If
In my original post I left out details about how
the form is used.
Thanks for pointing me in the right direction and
have a great day!