Set dialog File-Open to Details view

F

F.H. van Zelm

I posted this one before ... Hope it's not to stupid what I asked, because
there was no reaction at all.
And if this is the third edition of the mail: accept my apologies. To me, it
looks that #1 and #2 were considered o be replies to my own question.

====================================================

Hi there,

PowerPoint (2003) File-Open defaults to Preview view.

I prever File-Open in Details view or even better, in my latest used view.

I am very sure that there is a registry setting to do the trick ... because
I used it on PPt XP on my previous laptop.
Only, stupid me (shame, shame, triple shame), I have forgotten what, where,
....

Mvg, Frans
 
M

Michael Koerner

Your original question was answered. You need to give some time between
requests and responses. People who visit here do so on a voluntary basis.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


|I posted this one before ... Hope it's not to stupid what I asked, because
| there was no reaction at all.
| And if this is the third edition of the mail: accept my apologies. To me,
it
| looks that #1 and #2 were considered o be replies to my own question.
|
| ====================================================
|
| Hi there,
|
| PowerPoint (2003) File-Open defaults to Preview view.
|
| I prever File-Open in Details view or even better, in my latest used view.
|
| I am very sure that there is a registry setting to do the trick ...
because
| I used it on PPt XP on my previous laptop.
| Only, stupid me (shame, shame, triple shame), I have forgotten what,
where,
| ...
|
| Mvg, Frans
|
|
|
|
 
B

Bill Dilworth

I don't know of a registry way to change the default open view in PowerPoint
from thumbnails to details.

It might be able to be done by using a macro like this:
========================
Sub OpenMyWay()
Dim dlgOpen As FileDialog
Set dlgOpen = Application.FileDialog(msoFileDialogOpen)
With dlgOpen
.InitialView = msoFileDialogViewDetails
.Title = "Open Presentation -- MyWay"
.Filters.Clear
.Filters.Add "Presentations", "*.ppt; *.pps"
.Show
End With
If dlgOpen.SelectedItems.Count > 0 Then dlgOpen.Execute

End Sub
========================

--
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
yahoo2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
..
 
F

F.H. van Zelm

Hi Micheal,

You are right and so am I because my first post was on 01-21-2006. Then,
there were no reactions. My second
attempt indeed became a mess.
 
F

F.H. van Zelm

Hi Bill,

Thanks for your code. But ... I remember that someone, somewhere on Internet
published an instant solution. He commented on this stupid change in the
File-Open
dialog after an upgrade to PPt 97 or 2K from an older version (with proper
functionality).

His trick works on my old laptop in PPt XP. My I send a part of my registry
for
analysis. Perhaps you can find the needed setting. I am sure many PPt-users
would love to know.

Regards, Frans
 

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