473,804 Members | 3,196 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

pictures in tables?

Hello,

This is the first time I use a database program. I am trying to build a
product database. Each product will have an ID number, a description, and a
photograph. I need the table to display the photographs of the items, so
that I can visually spot the item that I am looking for. Please let me know
if it is possible to have pictures in the tables, and if not, what should I
do? Maybe Access is the wrong tool for this task. Maybe one form screen
can have multiple products. Please give me your recommendations .

Thanks.
Jan 1 '07 #1
9 2360
"Talal Itani" wrote
This is the first time I use a database program. I am
trying to build a product database. Each product will
have an ID number, a description, and a photograph. I
need the table to display the photographs of the items, so
that I can visually spot the item that I am looking for.
Please let me know if it is possible to have pictures in
the tables, and if not, what should I do? Maybe Access
is the wrong tool for this task. Maybe one form screen
can have multiple products. Please give me your
recommendations .
Note that the suggestions in the referenced examples do require minimal
understanding of VBA programming, but also note that we are told that Access
2007 has eliminated the problem of database bloating with storing and
displaying pictures as OLE Objects (which is the only convenient way to show
multiple images on-screen, using continuous forms view). When Access 2007 is
released to the public, and the requisite number of Service Packs and
hotfixes have been issued to get it past it's "juvenile system" problems,
that may be your solution -- reduced "programmin g" and no bloating.

The sample imaging databases at http://accdevel.tripod.com illustrate three
approaches to handling images in Access, and the download includes an
article discussing considerations in choosing an approach. Two of the
approaches do not use OLE Objects and, thus, avoid the database bloat, and
some other problems, associated with images in OLE Objects.

If you are printing the images in reports, to avoid memory leakage, you
should also see MVP Stephen Lebans' http://www.lebans.com/printfailures.htm.
PrintFailure.zi p is an Access97 MDB containing a report that fails during
the Access formatting process prior to being spooled to the Printer Driver.
This MDB also contains code showing how to convert the contents of the Image
control to a Bitmap file prior to printing. This helps alleviate the "Out of
Memory" error that can popup when printing image intensive reports.

Larry Linson
Microsoft Access MVP
Jan 1 '07 #2
If you use the fieldtype "ole" you are able to insert pictures and use them.

"Talal Itani" <ti****@verizon .netschrieb im Newsbeitrag
news:bFbmh.6607 $0F1.1639@trndd c02...
Hello,

This is the first time I use a database program. I am trying to build a
product database. Each product will have an ID number, a description, and
a
photograph. I need the table to display the photographs of the items, so
that I can visually spot the item that I am looking for. Please let me
know
if it is possible to have pictures in the tables, and if not, what should
I
do? Maybe Access is the wrong tool for this task. Maybe one form screen
can have multiple products. Please give me your recommendations .

Thanks.


Jan 3 '07 #3
"Thorsten Stegner" wrote
If you use the fieldtype "ole" you are able to insert pictures and use
them.
And, if you are using an earlier version than Access 2007, you subject
yourself to significant, unavoidable database bloat. And, no matter what
version, you subject yourself to the [features and functions | whims and
fancies | vagaries and inconsistencies] of whatever software the user has
registered for the image file type.

Larry Linson
Microsoft Access MVP
Jan 3 '07 #4
bloat is avoidable you fat fucking lazy retard

just use Access Data Projects

-Aaron
Larry Linson wrote:
"Thorsten Stegner" wrote
If you use the fieldtype "ole" you are able to insert pictures and use
them.

And, if you are using an earlier version than Access 2007, you subject
yourself to significant, unavoidable database bloat. And, no matter what
version, you subject yourself to the [features and functions | whims and
fancies | vagaries and inconsistencies] of whatever software the user has
registered for the image file type.

Larry Linson
Microsoft Access MVP
Jan 3 '07 #5
with SQL Server you have your choice of two different data types for
this; if you're storing SVG then you could probably store it as raw XML
and have GREAT performance

-Aaron
Larry Linson wrote:
"Thorsten Stegner" wrote
If you use the fieldtype "ole" you are able to insert pictures and use
them.

And, if you are using an earlier version than Access 2007, you subject
yourself to significant, unavoidable database bloat. And, no matter what
version, you subject yourself to the [features and functions | whims and
fancies | vagaries and inconsistencies] of whatever software the user has
registered for the image file type.

Larry Linson
Microsoft Access MVP
Jan 3 '07 #6
Talal,

I use an active X DBPix
you can find it
at ammara dot com

Is expensive but for newbies is a great tool

I have Access 2002 with SP3, I will not wait until Access 2007 is
released to the public

The beta of Access 2007? Never Mind in full of bugs and spywares
Also Office 2007 is going to be very expensive, and still wait for the
First Service Pack???

Regards,
Antonio Macias
Mexico City

Jan 4 '07 #7
<aa*********@gm ail.comwrote
bloat is avoidable you fat fucking lazy retard
just use Access Data Projects
I've used ADP with SQL Server. Overall, I could not see that it was any
better, perhaps not even as good as MDB-ODBC-Server, and ADP doesn't work
with most of the server DBs I've used over the years -- its server support
is only for MS SQL Server.

Bloat is avoidable, even with Jet, even with MDB -- but not with images
stored as OLE Object, in Access 2003 and earlier. One of the improvements
in Access 2007 ACCDB is that they did away with image-in-OLE bloat.

Larry

Jan 4 '07 #8
Store the images as files (in a folder). Just store a reference to the
location of the image in the database.

George

Talal Itani wrote:
Hello,

This is the first time I use a database program. I am trying to build a
product database. Each product will have an ID number, a description, and a
photograph. I need the table to display the photographs of the items, so
that I can visually spot the item that I am looking for. Please let me know
if it is possible to have pictures in the tables, and if not, what should I
do? Maybe Access is the wrong tool for this task. Maybe one form screen
can have multiple products. Please give me your recommendations .

Thanks.
Jan 5 '07 #9
On 5 Jan 2007 00:56:32 -0800, ge************@ yahoo.com.sg wrote:
>Store the images as files (in a folder). Just store a reference to the
location of the image in the database.

George

Talal Itani wrote:
>Hello,

This is the first time I use a database program. I am trying to build a
product database. Each product will have an ID number, a description, and a
photograph. I need the table to display the photographs of the items, so
that I can visually spot the item that I am looking for. Please let me know
if it is possible to have pictures in the tables, and if not, what should I
do? Maybe Access is the wrong tool for this task. Maybe one form screen
can have multiple products. Please give me your recommendations .

Thanks.
Just FWIW, the newly released Access2007 is apparently MUCH improved
for picture handling. Bloating is greatly reduced, and you can much
more easily use pictures in continuous forms, etc.

George's suggestion is quite apropos for earlier versions, but Talal,
if you have A2007 (or can upgrade to it), it's worth a try.

John W. Vinson[MVP]
Jan 5 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3149
by: NotGiven | last post by:
I am researching the best place to put pictures. I have heard form both sides and I'd like to know why one is better than the other. Many thanks!
0
2032
by: JakeC | last post by:
Hey all, I'm currently redesigning a website that a friend and I started about a year ago. It is a daily surf report so when choosing the best script/language to use for the new design, I found that a mixture of PHP and MySQL would be a good idea. I have currently set up OmniHTTPd and installed MySQL and PHP onto my homeserver. I want the site to be set up as follows: 1- I add the report, date and pictures (and amount of pictures...
0
1286
by: Marcel - IDUG Europe 2005 | last post by:
Visit the blog for a virtual experience of the conference. Check out the blog at: http://idugeurope.blogspot.com Here are some previous posts: - Pictures Live on Tuesday
12
20943
by: Wadim Grasza | last post by:
I want to store and display (on a form or a report) multiple pictures per record in an access database. The pictures are not stored within the database. They are stored as files and the database contains the paths to the pictures. The database consists of two tables: TABLE DATA ID Name LastName
1
1690
by: suresh_punniyakkodi | last post by:
Hellow, I am suresh, i am developing one project in VB. I need your help. My question is how to zoom pictures(zoom in and zoom out) in Visual Basic (like Photo Editor). Because, i am managing some pictures in my one part of the Project, and i need how to rotate pictures in Visual Basic. So, please tell me how to include zooming facility in VisualBasic. and how to include scrolls in that pictures, and also i need zoom to...
4
7257
by: Zeljko Bilandzija | last post by:
Hy, could someone help me in this: In design mode, i want to put pictures in database. I made column named pics, and its type as image. How can I put pictures or some address of these pictures in that column, or i maybe need to put pictures in Add_Data folder and make reference from there, or what I need to do? could someone explain me that process of putting at least one picture in database, I'm using Microsoft SQL Server 2005
2
16693
by: smorrison64 | last post by:
I have a form that is coded to open a File Dialog boc to pick a picture to display on that particular item on a subform. My form is not based on query, but rather two separate tables (one primary, one sub). That code is working properly. How do I get that to translate to my report? I use VBA code because I use formats other than BMP for the pictures. Would basing the form on the qury that the report is based on solve the issue without...
4
1169
by: enrico via DotNetMonster.com | last post by:
how do i open, save and retrieve pictures? with mySQL as my database. -- Message posted via http://www.dotnetmonster.com
0
1453
by: TOPSie | last post by:
I used http://support.microsoft.com/kb/316383/en-us as the basis of some code to generate a Word document using VB code (.NET2005). In the code I have a loop which produces a table and in the merged left hand column I place a picture (looping round a directory full of ,jpg files - a table entry in the Word document for every picture). All works fine and the document looks fine on the screen and in Print Preview, but when I print only...
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10578
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10332
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10321
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10077
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9152
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7620
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6853
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
3
2991
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.