Search results

  1. voidcranium

    CheckBox.check = show picture

    Thank You so much. :) I got it to work, I did not realize I had to put the code in 2 different spots. Here is the final code I used: Private Sub Form_Current() If Me.checkBoxStar_List Then Me.imgStar.Visible = True Else Me.imgStar.Visible = False End If End Sub Private Sub...
  2. voidcranium

    Picture do not show

    Is the picture Embedded or linked, you might need to change the link to the picture.
  3. voidcranium

    CheckBox.check = show picture

    Sorry guys but I can seem to get any of these suggestions to work. I even created a new form, checkbox and image put that code in and NOTHING happens. Got any other ideas? I didn't think this would be that hard. Thanks
  4. voidcranium

    CheckBox.check = show picture

    Where is that current event?
  5. voidcranium

    CheckBox.check = show picture

    Hello I'm at a loss on how to get this to work. I have a check box and I want it to show a picture if it is checked and hide the picture if it not checked. I dont know where to put it either, do I put it in the form load procedure or in the checkbox procedure? Basically I want the user to...
Back
Top Bottom