Sub MyImage_Click()
If MyImage.Picture = "C:\Path to grayed picture.png" Then
MyImage.Picture = "C:\Path to color picture.png"
Else
MyImage.Picture = "C:\Path to grayed picture.png"
End If
End Sub

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
>I have two versions of a picture (.png files), one 'greyed out' and one in
> full color. I want to display the greyed out version and then if somone
[quoted text clipped - 3 lines]
>
> Any suggestions? Thanks!