Format Painter Short Cut?

J

Jay Freedman

Hi Dave,

By default, it's Ctrl+Shift+C to copy the format at the highlight, and
Ctrl+Shift+V to paste that format at another location. Think "copy" (Ctrl+C)
and "paste" (Ctrl+V) with Shift to denote "formatting".

In the Tools > Customize and Tools > Customize > Keyboard dialogs, these are
listed under All Commands as CopyFormat and PasteFormat, respectively.
 
M

Michael

Hi Jay

I can get that short cut to work in Word, but not in Excel, any clue why
that is?

Could be that Im using Excel 2002?

- Michael

"Jay Freedman" skrev:
 
M

Malik Al-Amin

Hi Dave,

Thanks for the feedback.
This is the code that I have in the ShowFileDialog:

Sub ShowFileDialog()
Dim dlgOpen As FileDialog
Set dlgOpen = Application.FileDialog( _
FileDialogType:=msoFileDialogOpen)
With dlgOpen
.AllowMultiSelect = True
.Show
End With
End Sub

the .show method opens the dialog box but if I click on a file that file
doesn't open. Do I have to explicitly open it and if so how do I pass the
same name the user selected?

Thanks

Malik
 

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