472,331 Members | 1,670 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,331 software developers and data experts.

Display .jpg thumbnails in ListView

Hi,

I'm struggling to create an app that contains a window showing thumbnails of
all. jpg files within a specified directory.
I've been a couple of examples of how to iterate through a directory and
extract thumbnails from each jpg file but nothing about what should happen
to the extracted thumbnail. Ideally I would like each thumbnail to be
displayed (with filename underneath each thumbnail) in a listview control
(large icon view).

I have a very old VB6 app that does this (by using an imagelist control to
hold the thumbnail info) but it's not the fastest app, doesn't compile in
..NET so ideally I'd like a VB.NET version.

Any help much appreciated

Cheers,
Paul
Nov 21 '05 #1
8 20094
I know about the C# Thumbnail Extractor on vbaccelerator.com but I don't
know how to program in C# and the C# to VB.NET convertors produce tons of
errors.

"Paul" <pr*****@private.com> wrote in message
news:E9********************@pipex.net...
Hi,

I'm struggling to create an app that contains a window showing thumbnails
of all. jpg files within a specified directory.
I've been a couple of examples of how to iterate through a directory and
extract thumbnails from each jpg file but nothing about what should happen
to the extracted thumbnail. Ideally I would like each thumbnail to be
displayed (with filename underneath each thumbnail) in a listview control
(large icon view).

I have a very old VB6 app that does this (by using an imagelist control to
hold the thumbnail info) but it's not the fastest app, doesn't compile in
.NET so ideally I'd like a VB.NET version.

Any help much appreciated

Cheers,
Paul

Nov 21 '05 #2
"Paul" <pr*****@private.com> schrieb:
I know about the C# Thumbnail Extractor on vbaccelerator.com but I don't
know how to program in C# and the C# to VB.NET convertors produce tons of
errors.


You may want to keep the implementation of the Thumbnail Extractor in C#,
build a class library and use this class library in your VB.NET project.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #3
"Paul" <pr*****@private.com> schrieb:
I know about the C# Thumbnail Extractor on vbaccelerator.com but I don't
know how to program in C# and the C# to VB.NET convertors produce tons of
errors.


You may want to keep the implementation of the Thumbnail Extractor in C#,
build a class library and use this class library in your VB.NET project.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #4
Thanks,
I still have the C# Project, how would I build a class library to use in my
VB.NET project?

Cheers,
Paul


"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:O7*************@TK2MSFTNGP12.phx.gbl...
"Paul" <pr*****@private.com> schrieb:
I know about the C# Thumbnail Extractor on vbaccelerator.com but I don't
know how to program in C# and the C# to VB.NET convertors produce tons of
errors.


You may want to keep the implementation of the Thumbnail Extractor in C#,
build a class library and use this class library in your VB.NET project.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #5
Thanks,
I still have the C# Project, how would I build a class library to use in my
VB.NET project?

Cheers,
Paul


"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:O7*************@TK2MSFTNGP12.phx.gbl...
"Paul" <pr*****@private.com> schrieb:
I know about the C# Thumbnail Extractor on vbaccelerator.com but I don't
know how to program in C# and the C# to VB.NET convertors produce tons of
errors.


You may want to keep the implementation of the Thumbnail Extractor in C#,
build a class library and use this class library in your VB.NET project.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #6
"Paul" <pr*****@private.com> schrieb:
I still have the C# Project, how would I build a class library to use in
my VB.NET project?


Add the C# project to the solution that contains the VB.NET project. Make
sure that the C# project is a class library project (the project type can be
changed in the project properties). Then you can add a project reference to
the C# project in your VB.NET project. To do this, select the project in
the solution explorer, choose "Add/Remove reference..." from its context
menu and select the C# project on the "Projects" tab.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #7
"Paul" <pr*****@private.com> schrieb:
I still have the C# Project, how would I build a class library to use in
my VB.NET project?


Add the C# project to the solution that contains the VB.NET project. Make
sure that the C# project is a class library project (the project type can be
changed in the project properties). Then you can add a project reference to
the C# project in your VB.NET project. To do this, select the project in
the solution explorer, choose "Add/Remove reference..." from its context
menu and select the C# project on the "Projects" tab.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #8
Ok, i added the project to the solution and added the reference but on
second thought I think the C# Thumbnail Extractor is overkill for my needs.
I only need .jpg thumbs not excel and word ones, plus I can't for the life
of me figure out how to use the routines from the C# project in my VB.NET
project. Not smart enough!

I have however found new code which does pretty much what I want.
Pasted below for everyone's advantage.

Start with a blank form, add a listview control and imagelist control. One
thing I am stuck on is the thumbnails are 'stretched' to fit the dimensions
specified (120,120).
I need to keep within 120x120 but keep the aspect ratio intact, in other
words keep the proportions. The other task I need help with is ensuring
that when a thumbnail or multiple thumbnails are selected, then deleted,
that the listview is updated and refreshed preferably without rebuilding the
entire imagelist!

Any ideas?

Cheers,
Paul
CODE START

Const IMAGE_DIRECTORY As String = "INSERT PATH TO JPGs HERE"
Dim files As String() = Directory.GetFiles(IMAGE_DIRECTORY)
Dim max_length, i As Integer
Dim s, fname As String

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
ImageList_Load()
ListView_Load()
'Me.Controls.AddRange(New Control() {listView1})
End Sub

Private Sub ImageList_Load()
Dim pname As String
Dim myImage As Image
'Set the ColorDepth and ImageSize properties of imageList1.
imageList1.ColorDepth = ColorDepth.Depth32Bit
imageList1.ImageSize = New System.Drawing.Size(120, 120)
max_length = files.Length - 2
'Add images to imageList1.
For i = 0 To max_length
pname = Path.GetFullPath(files(i))
myImage = Image.FromFile(pname)
imageList1.Images.Add(myImage)
myImage = Nothing
Next
pname = Nothing
End Sub

Private Sub ListView_Load()
'ListView1.View = View.LargeIcon
ListView1.LargeImageList = imageList1
For i = 0 To files.Length - 2
fname = Path.GetFileName(files(i))
Dim listViewItem1 As ListViewItem = New ListViewItem(fname, i)
'Add listViewItem1 and listViewItem2.
ListView1.Items.AddRange(New ListViewItem() {listViewItem1})
listViewItem1 = Nothing
Next
End Sub

CODE END

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP15.phx.gbl...
"Paul" <pr*****@private.com> schrieb:
I still have the C# Project, how would I build a class library to use in
my VB.NET project?


Add the C# project to the solution that contains the VB.NET project. Make
sure that the C# project is a class library project (the project type can
be changed in the project properties). Then you can add a project
reference to the C# project in your VB.NET project. To do this, select
the project in the solution explorer, choose "Add/Remove reference..."
from its context menu and select the C# project on the "Projects" tab.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>

Nov 21 '05 #9

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

Similar topics

0
by: Richard | last post by:
Hello. In VB .NET I have a class derived from ListView like this: Public Class ListViewSorted Inherits System.Windows.Forms.ListView 'code to...
3
by: RAllsopp | last post by:
I have a client who would like to have several pictures associated with one system. I have read about storing only the pathname to save OLE...
3
by: andrewcw | last post by:
I have a simple winform with the following code. But although I can read back the info, the display fails to provide the text or the cell...
3
by: Vagabond Software | last post by:
I'm trying to display thumbnail images in a Listview that look more like the Windows thumbnail view. Everything is working pretty good, but my...
3
by: WStoreyII | last post by:
i need a control (free) that can be used to display thumbnails of pictures like they are in explorer. What control can do this? Thanks ...
1
by: Paul | last post by:
Hi, I'm struggling to create an app that contains a window showing thumbnails of all. jpg files within a specified directory. I've been a couple...
0
by: twoSeven | last post by:
hi, Here is what i want to do. I am making a file and folder browser similar to Windows Explorer with a treeview and listview.. In that, i get...
0
by: =?Utf-8?B?QWxoYW1icmEgRWlkb3MgS2lxdWVuZXQ=?= | last post by:
Hi misters, I have an WinForms application, and I am currently trying to load a TIFF file that contains about 70, 90 o more frames and show it...
3
by: Tim Kelley | last post by:
Is there a way (command line switch) to open Windows Explorer and set the view to Thumbnails? Thanks, Tim
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

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.