473,386 Members | 1,706 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Open Common Dialog with thumbnail view

Hi all.

When I need to search for pictures, I always have too choose thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view programmatically?
Example ??
At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm

Thanks
Arno R
Nov 21 '07 #1
8 4654
Arno R wrote:
Hi all.

When I need to search for pictures, I always have too choose thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view programmatically?
Example ??
At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm

Thanks
Arno R
I like Irfanview. http://www.irfanview.com/. I don't use it within my
Access apps but it's great for viewing pictures and thumbnails.
Nov 21 '07 #2

"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
Arno R wrote:
>Hi all.

When I need to search for pictures, I always have too choose thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view programmatically?
Example ??
At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm

Thanks
Arno R
I like Irfanview. http://www.irfanview.com/. I don't use it within my
Access apps but it's great for viewing pictures and thumbnails.

Can I use Irfanview from within Access to select (the path to) pictures?
I need the pictures in Access of course. I need to save the path to Images for certain records.
So the common dialog is fine, but it would be nice if it would open in thumbnail-view.

Btw: I use ACDSee for browsing/viewing pictures.

Arno R
Nov 21 '07 #3
Arno R wrote:
"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
>>Arno R wrote:
>>>Hi all.

When I need to search for pictures, I always have too choose thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view programmatically?
Example ??
At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm

Thanks
Arno R

I like Irfanview. http://www.irfanview.com/. I don't use it within my
Access apps but it's great for viewing pictures and thumbnails.

Can I use Irfanview from within Access to select (the path to) pictures?
I need the pictures in Access of course. I need to save the path to Images for certain records.
So the common dialog is fine, but it would be nice if it would open in thumbnail-view.
I don't see why not. I upgraded my old version to see what the most
current command line options are. Here are 3 of them
/slideshow=txtfile - play slideshow with the files from 'txtfile'
/slideshow=folder - play slideshow with the files from 'folder'
/thumbs - force thumbnails

I suppose you could make a command line like
i_view32.exe /slideshow=C:\Test /thumbs
to display all the image files in C:\Test as Thumbnails.

Irfanview is a small program and quick to download. There's so many
command line options (see the help topic on it) that it should be able
to do what you like. I suppose you'd need Shell() to open it with the
command line options tho. I'm not sure why you need to store the
pictures in an Access table, maybe A2007 has good control of that.
Btw: I use ACDSee for browsing/viewing pictures.
Probably has some similarites to Ifranview. Irfanview is freeware
(non-commercial use). If you press the About button in the program is
says "This copy of Irfanview is registered to You". No time/eval periods.
>
Arno R
Nov 21 '07 #4

"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
Arno R wrote:
>"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
>>>Arno R wrote:

Hi all.

When I need to search for pictures, I always have too choose thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view programmatically?
Example ??
At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm

Thanks
Arno R

I like Irfanview. http://www.irfanview.com/. I don't use it within my
Access apps but it's great for viewing pictures and thumbnails.

Can I use Irfanview from within Access to select (the path to) pictures?
I need the pictures in Access of course. I need to save the path to Images for certain records.
So the common dialog is fine, but it would be nice if it would open in thumbnail-view.
I don't see why not. I upgraded my old version to see what the most
current command line options are. Here are 3 of them
/slideshow=txtfile - play slideshow with the files from 'txtfile'
/slideshow=folder - play slideshow with the files from 'folder'
/thumbs - force thumbnails

I suppose you could make a command line like
i_view32.exe /slideshow=C:\Test /thumbs
to display all the image files in C:\Test as Thumbnails.

Irfanview is a small program and quick to download. There's so many
command line options (see the help topic on it) that it should be able
to do what you like. I suppose you'd need Shell() to open it with the
command line options tho. I'm not sure why you need to store the
pictures in an Access table, maybe A2007 has good control of that.
>Btw: I use ACDSee for browsing/viewing pictures.
Probably has some similarites to Ifranview. Irfanview is freeware
(non-commercial use). If you press the About button in the program is
says "This copy of Irfanview is registered to You". No time/eval periods.
>
Arno R

Well, I might try Irfanview. Not sure how much work that will be...
I'm not sure why you need to store the
pictures in an Access table, maybe A2007 has good control of that.
As I said I only need the *path* to the Image. I am not storing the images themselves.

I wil explain further:
What I am looking for is a 'facility' to make the following easy:
A guy ( a shop owner) gets new goods, takes pictures from his goods, stores these pictures somewhere on his PC and ...
afterwards he adds records of his new goods to his database, and also wants to add (a link to) the pictures ...
I still think that presenting a common dialog to 'pick the pics' is sufficient, but thumbnail-view would be nice.

Thanks
Arno R
Nov 21 '07 #5
Arno R wrote:
"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
>>Arno R wrote:

>>>"Salad" <oi*@vinegar.comschreef in bericht news:13*************@corp.supernews.com...
Arno R wrote:
>Hi all.
>
>When I need to search for pictures, I always have too choose thumbnail-view manually.
>Is it possible to open the common dialog in thumbnail-view programmatically?
>Example ??
>At the moment I am using Ken Getz' code. at http://www.mvps.org/access/api/api0001.htm
>
>Thanks
>Arno R

I like Irfanview. http://www.irfanview.com/. I don't use it within my
Access apps but it's great for viewing pictures and thumbnails.

Can I use Irfanview from within Access to select (the path to) pictures?
I need the pictures in Access of course. I need to save the path to Images for certain records.
So the common dialog is fine, but it would be nice if it would open in thumbnail-view.

I don't see why not. I upgraded my old version to see what the most
current command line options are. Here are 3 of them
/slideshow=txtfile - play slideshow with the files from 'txtfile'
/slideshow=folder - play slideshow with the files from 'folder'
/thumbs - force thumbnails

I suppose you could make a command line like
i_view32.exe /slideshow=C:\Test /thumbs
to display all the image files in C:\Test as Thumbnails.

Irfanview is a small program and quick to download. There's so many
command line options (see the help topic on it) that it should be able
to do what you like. I suppose you'd need Shell() to open it with the
command line options tho. I'm not sure why you need to store the
pictures in an Access table, maybe A2007 has good control of that.

>>>Btw: I use ACDSee for browsing/viewing pictures.

Probably has some similarites to Ifranview. Irfanview is freeware
(non-commercial use). If you press the About button in the program is
says "This copy of Irfanview is registered to You". No time/eval periods.

>>>Arno R

Well, I might try Irfanview. Not sure how much work that will be...

>I'm not sure why you need to store the
pictures in an Access table, maybe A2007 has good control of that.

As I said I only need the *path* to the Image. I am not storing the images themselves.

I wil explain further:
What I am looking for is a 'facility' to make the following easy:
A guy ( a shop owner) gets new goods, takes pictures from his goods, stores these pictures somewhere on his PC and ...
afterwards he adds records of his new goods to his database, and also wants to add (a link to) the pictures ...
I still think that presenting a common dialog to 'pick the pics' is sufficient, but thumbnail-view would be nice.

Thanks
Arno R
I've been playing around with this because its an interesting concept
although I don't fully understand your needs. Not sure if this is
anything you want to do but...I opened up my thumbnail jpgs in Irfanview
and selected a few and had Irfanview make an html page of them. Well,
this converted the jpgs to thumbnail jpg images. I went to the folder
where they were created and deleted the full size pics and html file.

I then created a table in Access...3 fields; ID, PicText (text to define
it), and PicFile (the hyperlink to the thumbnail).

Now I created a form and dropped those three fields into them and
created an image control. In my OnCurrent event my code is
Private Sub Form_Current()
Me.Image6.Picture = HyperlinkPart(Me.PicFile, acAddress)
End Sub

As I go through each record (single form) it displays the thumbnail to
the screen. I suppose with a dblclick (no need to show the hyperlink)
and I could call/open the picture. Thus Pic1.jpg is the full size pic,
Pic1T.jpg would be the thumbnail.

There's the old problem with continuous forms...if you had multiple
images (you can see more than 1 record) all images would be the current
image.

You might want to check out Tucows (http://tucows.com) as well. There
might be something there. Perhaps start with "Thumbnail view" for
searching.
Nov 21 '07 #6
Hi,

Arno R wrote:
Hi all.
When I need to search for pictures, I always have too choose
thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view
programmatically?
Example ??
Karsten Pries (a german developer) once created a demo on how to use a
common file dialog with the ability to choose between different kind of
views.

Available views are :
List, Details, Large Icon, Thumbnail, Small Icon and Tile.

He clearly punctuated that it's only tested with AXP and Win XP, and noone
may expect that it can be used with older versions ( maybe you can try
A2000 ) .

I case of interest visit this page:
http://www.kpries.de/index.htm?Entwi...filedialog.htm
(german language only).

There you have to look for the red labeled subsection "Spezialversion" where
you may find this:
Download: comdlgdemoXP.zip für Windows XP und Access 2002 (XP)

The german readme-file gives some more information, so maybe any translation
service (such as google language tool ) may be a little help.

Regards
Jens
Nov 21 '07 #7

"Jens Schilling" <Je************************@fissership.deschreef in bericht news:fi*************@news.t-online.com...
Hi,

Arno R wrote:
>Hi all.
When I need to search for pictures, I always have too choose
thumbnail-view manually.
Is it possible to open the common dialog in thumbnail-view
programmatically?
Example ??
Karsten Pries (a german developer) once created a demo on how to use a
common file dialog with the ability to choose between different kind of
views.

Available views are :
List, Details, Large Icon, Thumbnail, Small Icon and Tile.

He clearly punctuated that it's only tested with AXP and Win XP, and noone
may expect that it can be used with older versions ( maybe you can try
A2000 ) .

I case of interest visit this page:
http://www.kpries.de/index.htm?Entwi...filedialog.htm
(german language only).

There you have to look for the red labeled subsection "Spezialversion" where
you may find this:
Download: comdlgdemoXP.zip für Windows XP und Access 2002 (XP)

The german readme-file gives some more information, so maybe any translation
service (such as google language tool ) may be a little help.

Regards
Jens
Thanks much Jens !!
Since I am a 'neighbour' (I live in Holland), I am able to read German.

I will test the code further tomorrow, but I did see it worked in Access 2003 and Win XP.
Quickly converted to Access 2000. It works !!
Converted to Access 97 == Fails on Enum code ... (have to look at that)

Thanks much again !!

Regards,
Arno R
Nov 21 '07 #8
Hi, Neighbour ;-)

Arno R wrote:
>>Is it possible to open the common dialog in thumbnail-view
programmatically?
Karsten Pries (a german developer) once created a demo on how to use
a common file dialog with the ability to choose between different
kind of views.
http://www.kpries.de/index.htm?Entwi...filedialog.htm
(german language only).
Since I am a 'neighbour' (I live in Holland), I am able to read
German.
OK, Arno - so it's much easier for you...
Converted to Access 97 == Fails on Enum code ... (have to look at
that)
As you can read in the readme-file next to Enum-problems the
AddressOf-Operator is mentioned.
I my link collection I found a hint to the AddressOf-Operator refering to
Michael Kaplans homepage :

http://www.trigeminal.com/lang/1033/...p?ItemID=19#19

I didn't checked it out but maybe you can find there some information on
that.
And if you got it to run with A97 please let us know.... ;-)

Regards
Jens
Nov 22 '07 #9

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

Similar topics

7
by: Martin | last post by:
Again drawing on the groups experience:- 1. For general file opening and file saving, using VB6, are there any issues with using the FileOpen and FileSave Common Dialog Boxes? 2. Is using the...
1
by: Alisha | last post by:
I'm trying to open the Common Dialog box to allow the user to navigate to a folder and select a file. The users are accessing the application on a single Citrix server, so the enviroment is the...
1
by: Kanaiya | last post by:
hello i want to show thumbnail image view control which display captured images on this control but in small size. it is possible to add any no. of images in that control. and aslo possible to add...
3
by: GrantS | last post by:
I am needing to permit users to select files using the 'Open file' common dialog box. The format of the names of the files are along the names of: GB00((&X.001.jpg I am not able to show these...
10
by: Guadala Harry | last post by:
I have a modal dialog that currently does all of the following except item 4. 1. lets users select a graphic from a list of thumbnails (and when selected, displays the full-size image in a...
4
by: Marco Trapanese | last post by:
Hi! I show an OpenFile Dialog with: dlgOpen.ShowDialog() but I'd like to change the default view among Detail, Thumbnail, Icons, ect. Users change the view mode by this button: ...
1
by: sirimanna | last post by:
I want to know how can i open some text file data using microsoft common dialog control.6 I know how to save text data using microsoft common dialog control.6 code are here, ...
8
by: Janwillem | last post by:
Is there a way to force the wx.FileDialog to show as default the thumbnails vie in stead of list view? thanks, janwillem
3
by: Dylan Parry | last post by:
Hi, I have the following code: private Image _image; public MyImage(string filename) { FileStream file = File.Open(filename, FileMode.Open); _image = Image.FromStream(file);
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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...
0
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...

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.