I need to update a graphic on my form as part of the record information. Specifically, I have a graphic of the human body, and need the user to be able to mark the area where it hurts-scribble or put an "X" there-whatever. This modified graphic then needs to be stored somewhere and associated with that particular record.
Has anybody done this? Any suggested starting places?
I have a form that I would like to update a picture on using VBA. The source of the picture path is in part a query that is not bound to the form. So far I have the following code that is pretty much working, but with a couple flaws.
Code: Private Sub Form_Current() LoadDefaultPicture End Sub Sub LoadDefaultPicture() Dim db As DAO.Database
[Code] ....
This is working. However, when I change the record the picture flashes the current picture once and then loads the new picture. It is like it reloads the current picture then loads the new one. I'm hoping there is a way to get rid of the flash.
Also, the code fails here: strDefaultPictureName = rs.Fields("AttachmentName")
When the query does not return a record. I can definitely fix this by adding an if statement to check for a record, but I'm kind of perplexed at why it is failing at that line. I would expect it to assign an empty string to that variable name and then fail on the next command where I try and set the ".Picture" property of the image.
Hi all , Can anyone tell me about how to embedd image in image control using imagelist. I added the 5 images in imagelist at design time and added the following code. image.picture=imagelist.listimages(1).picture but iam getting error.error no :2110,cannot open the file . thank u, Siva
I'm in desperate need of help and want to know if it is possible to load an image on a form once a hyper link is created.
For example, I have a form with a hyper link to an image created, currently, when you click on the hyperlink, it opens the picture in the browser, can you change it so that it loads teh image embedded into the form instead of loading it into a browser?
How can I get an animated image on my switchboard? I found an animated image on the internet and I copied it. I went into design view and pasted it onto the switchboard then I went back to form view. I can see the image but it is not animated. How do I animate it?
i have a cars database because it is difficult to add 4000 pictures i want to know if is it possible to add a field that opens an ie page in google images to show results of images for that car? ex : model : Ferrari foto link :http://images.google.com.gr/images?hl=el&lr=&q=Ferrari&btnG=%CE%91%CE%BD%CE%B1%CE%B6%CE%AE%CF%84%CE%B7%CF %83%CE%B7
i have a form with the fields PhotoID PhotoName PHotoPath PhotoDate PhotoSize ImageFrame
my Imageframe is showing the image image format .jpg and size 200kb each
Problem
when i click next record , my mouse is flashing and my db is freezing for 2sec. I have place a code by www.mvps.org which hide the insert dialog message. Also , i have change the registry to No (read the article at the www.mvps.org).
I need something that will make my photo to load faster.
Private Sub Form_AfterUpdate() On Error Resume Next If IsNull(Me![ImagePath]) Then Me![ImageFrame].Picture = "" Else Me![ImageFrame].Picture = Me![ImagePath] End If End Sub
Private Sub Form_Current() On Error Resume Next If IsNull(Me![ImagePath]) Then Me![ImageFrame].Picture = "" Else Me![ImageFrame].Picture = Me![ImagePath] End If End Sub
To make a form which will show a picture (different for each record) if the field 'ImagePath' has an entry in it. If not, it does not show.
The table containing the image is 'tblAnimal' and the field name where the path is stored is 'ImagePath.'
I would like my user to be able to click a button on the form 'frmAnimal' which says 'Add/Change Picture.'
This would then open a File Dialog window where they can navigate to an image (.jpg or .bmp) and select it.
The file path of this image will be subsequently placed into the 'ImagePath' field of the current record that the form is showing (based on 'tblAnimal.'
I saw a similar technique on the Northwind example database but this uses an extra part and I am a little confused as to which VBA code I need as the OnClick Event of the button.
I have a form that has an image name. The image is stored on a web server. The image can be accessed through a URL. The problem is how can I show the image on my form. When I try to change the picture property of my image control it tells me that it cannot use a web address. Any help would be greatly appriciated
Private Sub Form_Load() DoCmd.Maximize Me.Image56.Picture = "K:Staff FoldersJinLongNew Folderdefault.jpg" End Sub
Private Sub Image56_Click() Dim DBpath As String If [Yield Trend Chart].Value Is Not Null Then DBpath = [Yield Trend Chart] Me.Image56.Picture = DBpath Else Me.Image56.Picture = "K:Staff FoldersJinLongNew Folderdefault.jpg" End If
End Sub
what is wrong with my codes? there is an error over at [cod]If [Yield Trend Chart].Value Is Not Null Then[/code]
what i need to do is that when the field [Yield Trend Chart] is empty, then set a default image as the image..
Hi I have an animated pic .jif which i would like to animate in Start up page. I insert it with button Image in my form it displays it but it does not animated. Please can you tell me why?
I have been trying to get an image to open from its location.... but it keeps trying to open "C:C:example.bmp" instead of "C:example.bmp" does anyone know how to take out the first directory location tag automatically?
On one of my PC's at home I thought I would give Office 2007 a go. It ran so slow and bogged down that I un-installed it and re-installed Office XP
Now when opening a db with an image the attached error message appears. The Db opened OK previously, and works on my other PC's, so I presume it is an office installation error.
i have database with products and i want to add a picture for each one In the table of products i have a field "Image path" D:dun.jpeg how can i insert this text-path from the form and not manually from table? for example :with a button ADD IMAGE from the form and browse file.......
I Have Some Images I Am Using That Are Bound As Ole Objects In A Table. When I Got View The Images On The Form They Come Up As Icons Even Though I Have Them Set To Content. I Also Noticed That In The Table Column It Notes Them As A Package Versus A Bitmap File. I Am Not Sure Why. Anybody Run Into This Problem?
I haven't worked with access in about 2 years, so I'm a bit rusty. I was wondering, what is the easiest way, if any, to output an image stored in an OLE object field to a file, like a bmp to be edited say in paint or something via VB code?
I am hoping someone out there has run into this problem and has some insight. :o
I have a directory with very small images around 48x36 pixels each. I am trying to fill an image table with about 900 images from this directory. The image table has two fields, one is a unique keyed field and the other is the OLE Object. The images are linked and their names are the same as the number in the keyed field (i.e. keyed field: 0000766 Image file: 0000766.gif).
Currently I have to select the OLE Object field and then right click and select "Insert Object", then click "Create from File" then check the "Link" box and finally browse to the actual image and select "OK". This is taking forever....
Is there a way to write some code to auto fill this OLE Object field based on what I type in the keyed field? Or just some code to run once in a while to fill in the blanks? :confused:
I will be adding and removing records to this table in groups of about 20 to 50 a month and I have a requirement to view them in a continuous form.
Any help would be greatly appreciated!! :o
Thank you.
PS - I originally posted this in the "Forms" section, but it may really be a "Tables" issue... Link to post in "Forms": Image Table Population Question (http://www.access-programmers.co.uk/forums/showthread.php?t=79615)
I am trying to build a database for my digital photo collection. (having pretty much gven up on the packages I see in the market)
Since most of the images reside on CD's and DVD's, I want to create and store thumbnails and pointers (ie. location fully qualified name), rather than a copy of the full image.
1. How do I define the fields in the table for the thumbnail, and the pointer? 2. How can I use the pointer value to retrieve the full image?
I have developed a form which contains a subform. The subform contains a bound image for display. Think of a 'department' form with 'employee' records on the subform containing an employee photo. (Very standard stuff.) It used to work correctly but I must have inadvertantly changed something but cant find it.
The problem is that the photos don't display at all as I move through the department records - using the main form's navigation. I need to use the subform navigation to show any of the photos. When I get a photo to show for a particular department then I can navigate through all the employees in that department and their photos display correctly. (If I run the subform separately then the photos display correctly too.)