Re: Conditional display of image in a report
- From: fredg <fgutkind@xxxxxxxxxxxxxxx>
- Date: Tue, 12 Dec 2006 12:49:46 -0800
On Tue, 12 Dec 2006 12:01:01 -0800, Lee S. wrote:
I am creating a series of reports where I want to display an image only if
the record indicates membership to an organization. The db contains both
members and non-members. Can someone suggest an image format and a method to
make this happen? I have created a Yes/No field to determine membership in
the org., now I just need to get the report to show the membership logo for
those that are members.
Thanks!
You wish to display a logo, not the member's picture?
You can use any picture format which your computer can display, ,bmp,
,jpg, etc.
Store the actual image in a separate file on the hard drive.
Let's say "C:\PictureFile
Add an Image control to the report.
Set the Image Picture property to the file where the logo is:
C:\PictureFile\YourLogoName.bmp
Make sure the YourLogoName extension is the correct type.
Code the Report Detail Format event:
Me!ImageName.Visible = Me![YesNoFieldName]
The logo will only show for members.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
.
- Prev by Date: Report Length (is there a max?)
- Next by Date: Chart Displays OK When Dirty, but not When Saved!
- Previous by thread: Report Length (is there a max?)
- Next by thread: Chart Displays OK When Dirty, but not When Saved!
- Index(es):
Relevant Pages
|