A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Linking Pictures to an entry



 
 
Thread Tools Display Modes
  #1  
Old November 22nd, 2005, 05:12 AM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Linking Pictures to an entry

Hi, I'm an Access novice. Trying to create a database for a non-profit Feline
clinic and adoption facility. In Access XP I was able to create a database
where I could link a name of a cat to a picture (entry type 'hyperlink') and
in the table you click on the name and the picture displays. When I create a
similar table in Access 2003, no picture displays. I get a warning message
that says "Hyperlinks can be harmful to your computer...." and the picture
never opens. Interestingly, if I take my old database and open it in Access
2003, those hyperlinks still work even when I get the same error message. I
have tried to compare all settings in Design view to assure they are the
same, but clearly something is different. Any help greatly appreciated as I
am doing this as a volunteer.


  #2  
Old November 24th, 2005, 06:51 PM posted to microsoft.public.access.tablesdbdesign
external usenet poster
 
Posts: n/a
Default Linking Pictures to an entry

An efficient way of including images in a database is to store the paths to
the image files in a simple text field in the table. Then on a form bound to
the table add an Image control and load the picture into it at runtime by
setting the Picture property of the control to the value of the text field in
the form's Current event procedure. The image then displays in the form
rather than shelling out to whatever image software you are using. Its
prudent to hide the image control if you have any records without images or
it will show the image from the previous record, so the code for the form's
Current event procedure would be like this:

If Not IsNull(Me.YourTextField)
Me.YourImageControl.Visible = True
Me.YourImageControl.Picture = Me.YourTextField)
Else
Me.YourImageControl.Visible = False
End If

This only works in single form view BTW, not in a continuous form.

You can do the same in a report. In that case use the detail section's
Print event procedure to load the image. Note that in a report you must have
a text box in the detail section bound to the text field, but it can be
hidden by setting its Visible property to false in its properties sheet.

"Brenda Kesler" wrote:

Hi, I'm an Access novice. Trying to create a database for a non-profit Feline
clinic and adoption facility. In Access XP I was able to create a database
where I could link a name of a cat to a picture (entry type 'hyperlink') and
in the table you click on the name and the picture displays. When I create a
similar table in Access 2003, no picture displays. I get a warning message
that says "Hyperlinks can be harmful to your computer...." and the picture
never opens. Interestingly, if I take my old database and open it in Access
2003, those hyperlinks still work even when I get the same error message. I
have tried to compare all settings in Design view to assure they are the
same, but clearly something is different. Any help greatly appreciated as I
am doing this as a volunteer.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Double Entry N. Evar Database Design 4 October 21st, 2005 02:50 PM
linking pictures to files tgunda73 Powerpoint 7 March 16th, 2005 04:12 PM
decipher log of scanpst.exe km General Discussion 0 July 18th, 2004 09:00 AM
Sending Pictures Bill Moses Outlook Express 1 June 3rd, 2004 10:26 PM


All times are GMT +1. The time now is 07:40 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.