General :: Adding Photos To A Form?

May 6, 2013

I have created a profiling database for my school. Each student can access their own form via the school's admission number - which I use as the primary key for most of the tables on the form. One section of the form shows a photo of the student. I take this photo from the school's SIMS photo file which had all the children's photos. Each photo in the file uses the school's admission number as its filename (for example 000358.jpg ).

I want to update the photos in my table by using a macro or piece of CBA code. Unfortunately, I don't know how to do this. When I set the database up I did each photo one at a time, so it took several hours.

View Replies


ADVERTISEMENT

General :: Adding Photos To Data Sheet From Within The Form

Oct 17, 2012

I have created a DB to store my students records, eg: Student Number, English Name, Chinese Name, Birthdate, Class Number, Age, and exam scores, I also have a photo frame to display the students photo.

In the data sheet I have an ole object field where I add the photos, the thing is it means I need to manually add this to the data sheet, whereas I can add all the other details directly from the form "Add New Record" and also search, delete or edit all from the form.

I have searched and searched but I cannot find any info that accurately explains how I may add the photos to the c where I have placed a button "Add Photo". I assume I need to create a macro and assign it to the button (on click) then this would need to open a search file location box where I can find the photo and select it to be added to the file.

The point is I wish to be able to do all the adding, deleting and editing from within the form and not have to enter into the data sheet at all.

I am using Office 2010

View 6 Replies View Related

Photos In A Form

Jun 12, 2006

Hi,
Im looking to place photos into a form. The situation being a members data base and for every member record there is a mug shot to go with there information.
Is it possible to store photos in this way so it is shown on the form as your browsing though them??

Any Help would be fantastic!
Cheers
Phill

View 2 Replies View Related

Showing Photos In An MS Access Form

Aug 5, 2004

Access 2003, Win XP Pro

I have tried to find information on how to do this but everything I try fails.

I have a form on which I want to display JPG photos which are stored in a folder called FCP. The path to each photo is stored in the database table. Each record will have one photo only and the path looks something like this:

C:Documents and SettingsBKALProjectLRFCP4.jpg

Can someone tell me exactly how to design a form picture field that will display the relevant photo?

Thanks!

View 3 Replies View Related

General :: Adding New Data Into Tables (via Form)

Jan 31, 2013

I have 2 tables.

Table one is for person ID
Table two is for number of absences

I created a one-to-many relationship with the update/delete option selected. It didn't work when I wanted to add new data into the tables (via form). Then I tried a many-to-many relationship (with a third table) but it doesn't seem logical to do so, as I only need to add particular data into one table, but need a field from the 1st to differentiate records.

(table 1 = one record per person, table 2 = multiple records for 1 person)

View 2 Replies View Related

General :: Dynamically Adding Option Controls To A Frame On A Form

Aug 20, 2012

In Excel, I can dynamically add option controls to a frame on a form using the Control.Add method. Is there an Access Equivalent? I can only find Count & Item as Control. items.

It might have something to do with design view i guess.

View 5 Replies View Related

Importing Photos

Jun 10, 2005

Have can I apply individual photo's to members records.
One photo for the one person in each record.

Foxy

View 4 Replies View Related

Photos On Reports

Feb 10, 2008

I want to have the photo of each person in a REPORT.

PEOPLE table has as primary key an ID, and photos are named ID.jpg. For example:

ID NAME
-----------------
7112 John
2322 Lewis
3553 Peter
1222 John
and photos are labelled 7112.jpg, 2322.jpg...

How can I do this?? THANKS!!

View 2 Replies View Related

Linking Photos

Feb 17, 2006

I've linked about 10 photos in my database and the size of it has swelled to alarming proportions. I linked rather than embed to keep the size down but it has still grown quite sizeably.

any ideas as to how I can overcome this kind of growth??

View 10 Replies View Related

Photos Revisited

May 2, 2006

I am a newbie in db creation..what I would like to accompish is this

I frontpage I have created a web site within the web I would liek to disply images similar to the built in display result in FP
but would rather havea DB either imbedded photos or external

photo page

table 2 cells
cell 1 large photo (created a iframe)
cell 2 table 2 cell x 6 cell (total of 12 thumbs

easiest enough to place the thumnails into the second column and edit the image to point to the large image and direct the large image to display in T1 (iframe) works like a charm

however with over 100 images I need an easier way to auto add the thumbnails and large photo to each page

my question

how do I create a DB that either contails both thum and image or asscess from folder...and ultimaley display into front page as per above

yes I ahve seach high and wide which is why I am here..seeing if any of you Access gurus can assist me

thanks in advance
Scott

View 2 Replies View Related

Linking Photos To Publisher

Jan 29, 2006

Hi,
I've got some id card templates in publisher than i want to merge in access.
i can merge the text details into access but i dont know how to link the photos. should i store the file path of the image in the database or should i embed the file.

would this work with publisher or do i need to use some code?

any help on this would be appriciated as i have no experience with pictures in access.

Thanks

View 1 Replies View Related

Pictures/PHotos In MS Acces

Jun 25, 2007

I'm not brilliant at using MS Access - can't use the VBA codes or anything like that.

basically, I want to set up a database of photogrpahs where you store thephotograph in Access, and then run a query to search for specific photos, which brings up a form showing the picture.

I seem to be OK at doing all of this so far except I can't get the photo to appear in the form - it just displays a link which you double click on to get to the photo.

I've tried to look up how to sort this on the web but don't understand the way people speak about access :confused:

can anyone help???

View 12 Replies View Related

Including Photos In Database

Mar 4, 2008

I've got a database that tracks name/address/phone, etc for a large group of people. I've recently added the ability to include a person's photo on the forms and reports. I've done that by saving the photos with the naming convention of [firstname]_[lastname].jpg and then using VBA, the database checks to see if there is a file with the corresponding name of the record and displays the picture if so.

It works very well, but I can see where I would have some problems in the future. For example, if someone gets married and changes their name, the corresponding photo must also be renamed to display properly. And if there are any misspellings, that becomes a problem. Also, if James decides he wants to go by Jim, the photo would not be displayed, either.

I'm wondering if anyone has any other ideas on how I might accomplish my goal. I know I could name the photo based on the record ID, but that's not a good option, since I'll be handling the photos, while someone else will be inputting the contact details. So I won't know the recordID easily.

Is there some way to have another field in each record that points to the corresponding photo? Then if James goes by Jim, his first name can be changed, but the corresponding picture name could remain the same.

Is there some great idea that I'm missing that would make this process much simpler and scalable? Or do I just have to deal with the maintenance issues?

Thanks.

View 7 Replies View Related

Embedding Loads Of Photos

Jan 26, 2007

I am wondering if it is possible to embed all of the photos that I have into my photo table automatically. I have the table set up with all of the data that needs to be there but I have over 1500 photos that need to be embedded and wanted to save myself some time and automate the process somehow. I already know that embedding these photos is going to make my database huge but that isn't an issue for this particular project.

As far as I can tell from this forum, the help and the Northwind database this isn't possible without manually going through every photo but I am pretty new to Access so thought I would throw the question out there.

Thanks

View 14 Replies View Related

Access - Display Photos

Oct 8, 2007

Hi.

How can I select a name from a drop-down box and display the corresponding student's photo that is stored as a JPEG?

Thanks.

View 3 Replies View Related

Inserting Photos As Records In Access 2003

Sep 6, 2012

I have created a tabel in access 2003 which has information about employees and i have to put even their photos as records so i can see them in a report that i have created too.

View 5 Replies View Related

Linked Photos Open In IE Not In Default Photo Viewer

Aug 28, 2011

With XP photo linked in Access would open from Access in my default photo viewer. With Win 7 they only open in EI.

How do I fix Access in Win 7 so the links open in my default photo viewer like they did in XP?

View 4 Replies View Related

How To Link Photos To Each Record And Display In Report (Access 2010)

Feb 1, 2013

How can I link multiple images from a folder on my drive to each record without making the database file huge?

Each record is a plant species. I want to link to photos of flower, seed, etc. See attached database example.

I would then like those images to appear on a report for each species. How would I go about doing this, if it is indeed possible?

View 6 Replies View Related

General :: Adding Two Totals Together?

Jul 18, 2013

I am trying to add two columns with multiple records in them together using VBA.

I have one column named "Quantity" and that has 5 records going down

Column1(Row1) = 2
Column1(Row2) = 3
Column1(Row3) = 1
Column1(Row4) = 2
Column1(Row5) = 2

I have another column name "Quantity2" and that has another 5 records going down

Column2(Row1) = 1
Column2(Row2) = 4
Column2(Row3) = 2
Column2(Row4) = 2
Column2(Row5) = 2

I need a code to simply add them all together together using VBA and put the value back in a text box.

So the Value in the text box would be = 21

View 9 Replies View Related

General :: Sum Adding 1 To Overall Result?

Mar 26, 2015

I have a report...with one number at the end of a line, beneath is a sum() of all the numbers above.

To test this report, I have ensured there is just one line to 'sum' ....this particular number happens to be $15.82, yet the field showing the sum of this is displaying $15.83 ...I'm going potty here trying to work out where the extra 1 is being added...it's not a rounding error as there are no further decimals involved, both fields are set to 'fixed' 2 decimal places.

View 3 Replies View Related

General :: Adding Values To Graphs?

May 23, 2013

anyway you can add the values onto a graph

eg i have created a bar graph and on each bar would like the value shown on the top of it

View 9 Replies View Related

General :: Adding Date Add To A Field

Jul 5, 2013

i have a tbl that stores items that have an expiry. in a child table i want to store the expiry. but as it is different for each item i need a way of doing this.

i thought that by having

DateAdd('m',3,Date()) in one of the fields this would work.

on click event i would like the date add to come into play but the way i am doing it comes up with an error. too few arguments.

this is what i have so far

Code:
Dim rs As DAO.Recordset
Dim db As DAO.Database
Set db = CurrentDb

[Code].....

View 14 Replies View Related

General :: Adding 00 To Number Field

Feb 12, 2014

I have a text field with numbers like this: 2014556682 or 2014236781, etc.

My problem is that I need to insert 00 between the 2014 and the last 6 numbers.

View 5 Replies View Related

General :: Adding Record To Multiple Tables

Jun 6, 2013

I have a main table with subject id and other fields. I also have 16 other tables which have questionnaire information at 17 different timepoints. In those tables, the subject id is the only connected field between the main table and 17 different years. When I add a new record (by subject id) on the main table, I want it to add that same subject id to the 17 other tables because that subject id will eventually get all 17 years worth of data. But even using subforms, it will not add a new subject to the other tables unless I add some sort of information such as (date received) into the subform.

View 6 Replies View Related

General :: Adding Thumbnails For Specific Records

Jul 21, 2014

I am looking for a way to store thumbnail images for specific records. I want an idiot proof way of selecting a jpeg image and then storing a 200x120px bmp version of the file in the database. Is this achievable with VBA code?

View 2 Replies View Related

General :: Adding Record Into Database Via Forms

Aug 9, 2013

I want to send out my database to a client so they can add records into it via the forms i've created, but I don't want them to be able to change the coding etc. But I also want to be able to update my database and send it back out to them but obviously the records they've entered need to remain. Do i convert it to an accde and then back to an accdb, make my changes then convert again to accde?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved