graphics

J

Jade

can anyone tell me the most straight forward way to display a different graphic for each record i.e employee records
 
?

___

In the AfterUpdate Event of your CheckBox put the following cod
changing YourCheckBox to the name of your check box and YourImage t
the name of your image control.


Code
-------------------

If Me.YourCheckBox = True Then
Me.YourImage.Visible = True
Me.Repaint
Else
Me.YourImage.Visible = False
Me.Repaint
End If
 
?

___

In the AfterUpdate Event of your CheckBox put the following cod
changing YourCheckBox to the name of your check box and YourImage t
the name of your image control.


Code
-------------------

If Me.YourCheckBox = True Then
Me.YourImage.Visible = True
Me.Repaint
Else
Me.YourImage.Visible = False
Me.Repaint
End If
 
L

Linda

Create a picture field in the employee table that
contains an OLE value pointing to the image you want for
each employee. I am guessing you want ID photos for each
employee. Remember that OLE fields take a large amount
of space!
You could also store a hyperlink to the picture file,
rather than the picture itself. This doesn't work as well
if you want the picture to display on a form.
-----Original Message-----
can anyone tell me the most straight forward way to
display a different graphic for each record i.e employee
records
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top