open dialog box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi,

how do i get the open dialog box to come up automatically
when i open excel??

I have a boss that wants that....and I aim to please.

Also, how can i make the columns in the open dialog box in the view
come closer together so there are more spreadsheets in the open dialog box?

thanks
 
You'll have to create a new workbook and store it in his XLStart folder:

Option Explicit
Sub Auto_Open()
Application.Dialogs(xlDialogOpen).Show
ThisWorkbook.Close savechanges:=False
End Sub

Or you could tell him to use ctrl-o.
 

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

Back
Top