Icons with photos in them

G

Guest

I recently changed my elerdly mother from ME to XP. She swears that on ME the
icons had small pictures in them. Thsi is in the icon view. She uses this to
view and move her pictures to other folders.

She does not use the "My Pictures" folder, but instead makes her own folder
on the desktop to download her pictures to from her camera.

How can this be set changed simply so that it happens by itself every time.

Thanks,
 
Y

Yves Alarie

Instead of using the Icon view, just change this to the Thumbnails view and
then she can just select the thumbnails and move them to other folders.
As it is in XP, the icon view gives you the icon of the software in which
the picture will open if you double click on it.
 
G

Guest

Yves,

That's what I tried to show her and she was not happy doing it that way. The
thumbnails are too big for her to do anything with especially since her hands
are not too steady. Also she prfers to avoid extra steps and drag the picture
to her various folders.

Are you suggesting that in XP one can't do this as you apparantly can in ME?
If not, can you suggest a simple program that I can have installed that would
do the trick.

Thanks,
Marc
 
J

John Inzer

You should be able to eliminate the need
to choose Thumbnails everytime you open
a folder if you select the View you wish and
go to...Tools / Folder Options / View tab /
Apply To All Folders button / Yes / OK.

If you download and install TweakUI from
the following site...you can adjust the size
and quality of your thumbnails.

Windows XP PowerToys / free download
http://tinyurl.com/36n
(download the one that says:
TweakUI.exe 147 KB)

Once you have TweakUI installed, open
it and go to...Explorer / Thumbnails...
Drag the slider to adjust the quality and
enter a number to adjust the pixel size
of your thumbs.
 
Y

Yves Alarie

I have never worked with ME, so I don't know.
But all is not lost, you can reduce the size of the thumbnails to something
she will prefer.
Go to this site and download the free TweakUI.exe into one of your folders.
http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx
Once in the folder, double click on the file to install it.
Once installed, Click on Start and All programs.
You will see Powertoys for Windows XP listed there. Open it and click on
TweakUI for XP.
A window will open. Click on the + sign at the left of Explorer to open it
and click on Thumbnails.
The default size is 96, change it to 50 and see if this works or her.

You can try the free Picasa 2 from here:
www.picasa.com
This is what I have on my wife's computer.
She just click on the Picasa icon on her desktop and she can see all the
thumbnails of all the photos on her hard drive. No need to open any folder,
she can just scroll through all of them, or use the time line do display in
chronological order. Also quite easy to make special albums or collections
of pictures from various folders. If you spend about 1 hour with it to
understand the features, your mother may like this little toy.
 
D

David Candy

There is a trick that allows bitmaps to appear as a icon of themselves. This is because icons are files containg multiple bitmaps. Windows has always been able to use bitmaps as icons though MS screwed up the rendering in XP and transparent show as black.

From www.mvps.org/serenitymacros/icon.html
Windows treats bitmaps (bmp or Bitmap Image files) as icons. Therefore with a simple registry edit bitmaps will show a picture of themselves as a icon.

VBS File
SetBitmapIcons.vbs tests that Bitmap Image (bmp) files are associated with Picture.Paint because a lot of bitmap editors take the extension and set it to themselves (which is the incorrect way of doing it). If it's not associated with Picture.Paint then it offers to reassociate Bitmap Images to Picture.Paint. The icons cannot be changed if it's not associated with Picture.Paint. You are only prompted to change the association to Picture.Paint if it's not already associated.

It then tests if the icon is already set to display its' own picture. If it is, it offers to restore the Window's default which is Icon 1 in MSPaint, if not it offers to set it to a picture of the bitmap.

The icon cache file is then deleted and it advises that a restart of Windows is necessary. See the note in the file if Windows is not installed in its' default directories or if directories short file name has been changed.

'SetBitmapIcons.vbs
'Displays and/or changes the default association for bitmaps and can change them to use a picture of themselves as the icon.
'
'Serenity Macros http://www.angelfire.com/biz/serenitymacros
'David Candy (e-mail address removed)
'
'-----------------------------------------------------
'N O T E * * * N O T E * * * N O T E
'Edit strPbrush with the path to MSPaint (in case it's different from the default)
'----------------------------------------------------
'
On Error Resume Next
strPbrush="C:\PROGRA~1\ACCESS~1\MSPAINT.EXE,1"
strTitle="Set Bitmap Icon"
strPbrush="C:\PROGRA~1\ACCESS~1\MSPAINT.EXE,1"
Dim Sh
Set Sh = WScript.CreateObject("WScript.Shell")
ReportErrors "Creating Shell"
Msgbox "Set Bitmap Icons checks the file association for bitmaps, can restore them to the Windows default if they have been changed, and can set the icon to be a picture of the bitmap or set it back to the Windows default icon." & vbCRLF & vbCRLF & "You will be prompted for each action.", vbInformation + vbOKOnly, strTitle
If Sh.RegRead("HKCR\.bmp\") ="Paint.Picture" then
SetIcon
Else
If MsgBox("Bitmaps are associated with " & Sh.RegRead("HKCR\.bmp\") & vbcrlf & vbcrlf & "Would you llike to associate bitmaps back to Paint?",vbQuestion + vbYesNo + vbDefaultButton2, strTitle) =6 then
Sh.RegWrite "HKCR\.bmp\", "Paint.Picture"
SetIcon
Else
Msgbox "Bitmap associations not changed. Cannot set icon for bitmaps unless their associated with Paint.Picture (usually Paint).", vbInformation + vbOKOnly, strTitle
End If
End If

ReportErrors "Main"
VisitSerenity

'---------------------------------------------------------
Sub SetIcon
On Error Resume Next
If Sh.RegRead("HKCR\Paint.Picture\DefaultIcon\") <>"%1" then
If MsgBox("Icons are set to show as Windows default icon." & vbCRLF & vbCRLF & "This will set the default icon for bitmaps to a picture of the bitmap." & vbCRLF & vbCRLF & "Continue?",vbQuestion + vbYesNo + vbDefaultButton2, strTitle) =6 then
Sh.RegWrite "HKCR\Paint.Picture\DefaultIcon\","%1"
Msgbox "Bitmap icons should now be a picture of the bitmap." & vbCRLF & vbCRLF & "You'll need to restart Windows", vbInformation + vbOKOnly, strTitle
FlushIconCache
Else
Msgbox "Bitmap icons were not changed", vbInformation + vbOKOnly, strTitle
End If
Else
If MsgBox("Icons are set to show as a picture of the bitmap." & vbCRLF & vbCRLF & "This will set the default icon for bitmaps to Windows default" & vbCRLF & vbCRLF & "If Windows is not installed on the C drive, MSPaint is not installed, or Program Files\Accessories folder has a non standard short file name then choose No and edit this file with the correct path name." & vbCRLF & vbCRLF & "Continue?",vbQuestion + vbYesNo + vbDefaultButton2, strTitle) =6 then
Sh.RegWrite "HKCR\Paint.Picture\DefaultIcon\",strPbrush
Msgbox "Bitmap icons should now be Windows default icon. " & vbCRLF & vbCRLF & "You'll need to restart Windows", vbInformation + vbOKOnly, strTitle
FlushIconCache
Else
Msgbox "Bitmap icons were not changed", vbInformation + vbOKOnly, strTitle
End If
End If
ReportErrors "SetIcon"
End Sub

'---------------------------------------------------------
Sub FlushIconCache
On Error Resume Next
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
FSO.DeleteFile sh.ExpandEnvironmentStrings("%windir%") & "\ShellIconCache", true
If err.number=53 then err.clear
ReportErrors "FlushIconCache"
End Sub

Sub ReportErrors(strModuleName)
If err.number<>0 then Msgbox "Error occured in " & strModuleName & " module of " & err.number& " - " & err.description & " type" , vbCritical + vbOKOnly, "Something unexpected"
Err.clear
End Sub

Sub VisitSerenity
If MsgBox("This program came from the Serenity Macros Web Site" & vbCRLF & vbCRLF & "Would you like to visit Serenity's Web Site now?", vbQuestion + vbYesNo + vbDefaultButton2, "Visit Serenity Macros") =6 Then
sh.Run "http:\\www.angelfire.com\biz\serenitymacros"
End If
End Sub
 
G

Guest

I went with TweakUI and she's happy with it. Thanks to all for your help. You
saved an elderly person from getting a Mac.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top