Store Picture In Access

a_20120

tan
Local time
Today, 23:59
Joined
Nov 21, 2006
Messages
175
Hi every one,
Needed ur urgent help, I want to insert picture in the IMAGE CONTROL on the form (Not Directly in Table) , and after filling all data...when I click on SAVE BUTTON, all the Data store in the table...
if possible, plz reply me as soon as u can...
 

Attachments

Help !!!

Any One help me plz, Help me with above thread...there should be some one answer me, specially Mr. OldSoftBoss, who is the Maker of the Sample Picture DB...
 
it is just a idea but in the table but a file path to where the picture is held and place the picture infront so when you save a picture u save a bitmap to a folder and just save the file path and pull out the picture when you need it ???
 
I must have answered this question a thousand times. Do a SEARCH if it is that URGENT
 
Store File Name + Extension

Hi All,
I want to store the file name and it extention, not all the path of the picture...but I dont know what is the error...also when I change the place of the DB folder, does not recognise the path...plz see the attached file
 

Attachments

Just have a look at the attached file

I dont know, why I cant store the name and the extension of Picture file...

I tried and searched much, but still dont know what is the problem?
 
Last edited:
Plz Anyone specialy Mr. OldSoftBoss find the problem...I tried but could not...
 
Your search should have found this thread complete with a sample Db

here

Col
 
Dear ColinEssex,
Plz try to add new Image, after clicking on SAVE button, the error 3163 appears... plz try the DB once
 
Thanks All

Could u plz have a look at the attached file...
and also I used the functions MID(), INSTRREV() to separate the file name and its extension from the Full Path...
 

Attachments

Thanks Mr. OldSoftBoss,
Plz have a look at the aboveThread...plz
 
Insert a listbox and paste the following as the rowsource:

SELECT tblPicture.PicSN, tblCategory.CategoryName, tblDistrict.DistrictName, tblCrop.CropName FROM tblCrop INNER JOIN (tblDistrict INNER JOIN (tblCategory INNER JOIN tblPicture ON tblCategory.CategoryID = tblPicture.PicCategory) ON tblDistrict.DistrictID = tblPicture.PicDistrict) ON tblCrop.CropID = tblPicture.PicCrop;
 
a20120
Do you have a VB background? You have a strange way of using forms without a recordsource, and then using code to add directly to the table recordset. Normally, if you put an entry in, you could simply use the undo command to exit without saving.

Not sure what you are trying to achieve with the Db, the sample I posted will parse the file name and break it up into it's individual parts so you can save any parts you want.

Dave
 
Thanks Much Mr. OldSoftBoss,
Could u plz put the attached file, How did u do, Bcoz I am really confused...
 
Mr. OldSoftBoss,
Could u plz put the attached file,bcoz I am in need of that, I should do that as soon as possible, if possible plz put the attached file, How to make a review Form for Images through the list box.
 
Hi All,

Thanks for the replying, Could u plz guide me how to connect List Box with Image Control, also with Customised Navigation Button?
For further information see the attached DB...
 

Attachments

Hi All

There should be some one who can help and guide me!!!
I tried much but unfortunately really confused, also thanking Mr. OldSoftBoss!!! for helping me...
 

Users who are viewing this thread

Back
Top Bottom