<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8770888539509058638</id><updated>2012-02-16T11:51:59.856-08:00</updated><title type='text'>Loading image files vb2005</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://loadingimagefiles.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8770888539509058638/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://loadingimagefiles.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8770888539509058638.post-8865416514915553601</id><published>2009-02-04T02:06:00.000-08:00</published><updated>2009-02-04T02:07:02.047-08:00</updated><title type='text'></title><content type='html'>Loading image files vb 2005&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;First, let me say that i haven't written codes since the early days of VB.NET 2003. However, I'm back and I'm catching on. So I'm working on a project and I would like to load an image into a picture box. &lt;br /&gt;&lt;br /&gt;This code works: &lt;br /&gt;&lt;br /&gt;pictureBox.Image = Image.FromFile("C:\Empty Device.jpg") &lt;br /&gt;&lt;br /&gt;Then i thought, when i take the program to another computer, the image 'Empty device' won't be in the C: of that computer. I remember a way to solve this problem in the past VB versions was to put the image file in the bin folder and write the code as above without the drive letter. That doesn't seem to work in VB2005. So is there a new solution to this? &lt;br /&gt;&lt;br /&gt;Also if you can be kind enough to include a similar solution to opening other files (like word files, etc) without having to put drive letters since I would be taking the program to another computer. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Check whether the image exists using... &lt;br /&gt;&lt;br /&gt;Code: &lt;br /&gt;if new io.FileInfo("C:\Empty Device.jpg").exists then &lt;br /&gt;    pictureBox.Image = Image.FromFile("C:\Empty Device.jpg") &lt;br /&gt;end if &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Alternatively, distribute the image with your application and place it into the BIN directory. You can then refer to the image and the BIN directory location using... &lt;br /&gt;&lt;br /&gt;Code: &lt;br /&gt;    pictureBox.Image = Application.StartupPath &amp; "\Empty Device.jpg" &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;And lastly, you can add the image as a resource of your project, e.g. you effectively embed the image into the executable, and then retreive the image through the My namespace, e.g. &lt;br /&gt;&lt;br /&gt;Code: &lt;br /&gt;    pictureBox.Image = My.Resources.Empty_Device.jpg &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Note: all of the above is air-coded, for thorough examples search the forum or play around with intellisense for the appropriate methods.&lt;br /&gt;&lt;br /&gt;improvise, overcome, go home &lt;br /&gt;Microsoft MVP Visual Basic 2004, 2005, 2006, 2007 &amp; 2008 &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;source :http://www.vbcity.com&lt;br /&gt;&lt;br /&gt;-------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gambarbergerak-riaq.blogspot.com"&gt;Trik Gambar Bergerak&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://gambar-dimouse.blogspot.com"&gt;Trik Gambar-dimouse&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://hapuspwdmysql.blogspot.com"&gt;Trik hapus pwd mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://insertintodb.blogspot.com"&gt;Trik insertin to db&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jadirootdilinux.blogspot.com"&gt;Trik jadi root dilinux&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://jam-distatus-bar.blogspot.com"&gt;Trik jam-distatus-bar&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-kedatabase.blogspot.com"&gt;Trik Koneksi-ke database&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://koneksi-msql-php.blogspot.com"&gt;Trik Koneksi-msql-php&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://lihat-database-mysql.blogspot.com"&gt;Trik lihat-database-mysql&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://membahas-fungsi-else.blogspot.com"&gt;Trik membahas-fungsi-else&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;a href="http://member-area-riaq.blogspot.com"&gt;Trik member-area&lt;/a&gt;&lt;br/&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000FI73MA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt; &lt;iframe src="http://rcm.amazon.com/e/cm?t=woodworkin09c-20&amp;o=1&amp;p=8&amp;l=as1&amp;asins=B000P9ZBFA&amp;fc1=000000&amp;IS2=1&amp;lt1=_blank&amp;m=amazon&amp;lc1=0000FF&amp;bc1=000000&amp;bg1=FFFFFF&amp;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8770888539509058638-8865416514915553601?l=loadingimagefiles.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://loadingimagefiles.blogspot.com/feeds/8865416514915553601/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://loadingimagefiles.blogspot.com/2009/02/loading-image-files-vb-2005-first-let.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8770888539509058638/posts/default/8865416514915553601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8770888539509058638/posts/default/8865416514915553601'/><link rel='alternate' type='text/html' href='http://loadingimagefiles.blogspot.com/2009/02/loading-image-files-vb-2005-first-let.html' title=''/><author><name>vbnetcode</name><uri>http://www.blogger.com/profile/04926504053784281645</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
