 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Store picture from vb to access field</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 03:56:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: mikessoftware</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49687</link>
		<dc:creator>mikessoftware</dc:creator>
		<pubDate>Thu, 31 Mar 2005 10:45:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-49687</guid>
		<description><![CDATA[You will be much better off in the long run if you save the picture to a file and store the path to the file in Access.]]></description>
		<content:encoded><![CDATA[<p>You will be much better off in the long run if you save the picture to a file and store the path to the file in Access.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manu1076</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49688</link>
		<dc:creator>manu1076</dc:creator>
		<pubDate>Wed, 30 Mar 2005 03:55:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-49688</guid>
		<description><![CDATA[u can store ur images/files in access database using BLOB datatype, but this would inflate the database size. so its always preferred to store the path/url of the image/file into the database.]]></description>
		<content:encoded><![CDATA[<p>u can store ur images/files in access database using BLOB datatype, but this would inflate the database size. so its always preferred to store the path/url of the image/file into the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tmalik</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49689</link>
		<dc:creator>tmalik</dc:creator>
		<pubDate>Thu, 24 Mar 2005 09:30:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-49689</guid>
		<description><![CDATA[I am not sure exactly about access but I know for sure that sql server uses image type field to save pictures and oracle use BLOB datatype to save images.

You usually save things like Jpegs and Gifs into a database like access, sql or oracle save pictures in binary. There are a lot of material available over the web for this. Just type in saving binary data to database in VB. You will get a lot of hits in google or yahoo.
good luck.
Malik]]></description>
		<content:encoded><![CDATA[<p>I am not sure exactly about access but I know for sure that sql server uses image type field to save pictures and oracle use BLOB datatype to save images.</p>
<p>You usually save things like Jpegs and Gifs into a database like access, sql or oracle save pictures in binary. There are a lot of material available over the web for this. Just type in saving binary data to database in VB. You will get a lot of hits in google or yahoo.<br />
good luck.<br />
Malik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mejohnson</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49690</link>
		<dc:creator>mejohnson</dc:creator>
		<pubDate>Thu, 24 Mar 2005 09:14:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-49690</guid>
		<description><![CDATA[What I have done is created a text field in a table. Store the location of the picture (c:picturespicture1.jpg) for each record.  Create the report but you must have at least one grouping.  I stick everything in the grouping.  Insert a picture object.  It can be any picture; doesn&#039;t matter. 

Then on the OnFormat event of the grouping type me.image.picture (name of image object) = me.txtpicture (textfield)
format_count = 1

This takes a very very very long time and if you have lots of pictures, records, etc. even longer.  Be patient.
]]></description>
		<content:encoded><![CDATA[<p>What I have done is created a text field in a table. Store the location of the picture (c:picturespicture1.jpg) for each record.  Create the report but you must have at least one grouping.  I stick everything in the grouping.  Insert a picture object.  It can be any picture; doesn&#8217;t matter. </p>
<p>Then on the OnFormat event of the grouping type me.image.picture (name of image object) = me.txtpicture (textfield)<br />
format_count = 1</p>
<p>This takes a very very very long time and if you have lots of pictures, records, etc. even longer.  Be patient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: csharplover</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49691</link>
		<dc:creator>csharplover</dc:creator>
		<pubDate>Thu, 24 Mar 2005 08:42:23 +0000</pubDate>
		<guid isPermaLink="false">#comment-49691</guid>
		<description><![CDATA[If you need to display the images in the report, and if it is a web-based report, you can very well make use of IFRAME and provide its SRC attribute, the image path that you have stored in OLEDB field. The reason why I am suggesting this option is, because if an option of stored images on predifined location and storing the path in DB is available, it will be overhead to store full image.]]></description>
		<content:encoded><![CDATA[<p>If you need to display the images in the report, and if it is a web-based report, you can very well make use of IFRAME and provide its SRC attribute, the image path that you have stored in OLEDB field. The reason why I am suggesting this option is, because if an option of stored images on predifined location and storing the path in DB is available, it will be overhead to store full image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: timallard</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49692</link>
		<dc:creator>timallard</dc:creator>
		<pubDate>Thu, 24 Mar 2005 08:30:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-49692</guid>
		<description><![CDATA[Storing it as a BLOB is typical (binary)... the reason most people don&#039;t do this is that it inflates the database size a lot.]]></description>
		<content:encoded><![CDATA[<p>Storing it as a BLOB is typical (binary)&#8230; the reason most people don&#8217;t do this is that it inflates the database size a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: princess8</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/store-picture-from-vb-to-access-field/#comment-49693</link>
		<dc:creator>princess8</dc:creator>
		<pubDate>Thu, 24 Mar 2005 01:13:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-49693</guid>
		<description><![CDATA[That would work for the forms but for reporting purpose i would require to store the pic so the the report could pick the picture directly. Awaiting desperate help. Thanks in advance.

princess8]]></description>
		<content:encoded><![CDATA[<p>That would work for the forms but for reporting purpose i would require to store the pic so the the report could pick the picture directly. Awaiting desperate help. Thanks in advance.</p>
<p>princess8</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/8 queries in 0.037 seconds using memcached
Object Caching 353/354 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 04:50:43 -->