A contractor modified the File-Open command (in Word and Excel) so it opens
a completely different set of dialog windows, so that my good old
"file-open" no longer works in the usual way, either the icon in the toolbar
or the Open option of the File menu. I tried to customize the toolbar but
discovered there's no icon for "Local Open". I also tried to make a macro,
but the final macro doesn't contain code, which is odd. Is there a way to
get the basic "open file" dialog window via the open file icon at top, or
write some code to defeat the code written by the contractors - don't worry,
just on my PC, not company-wide.
Many thanks in advance.
Jezebel - 20 Dec 2006 01:46 GMT
Your contractor has either --
1. Replaced the FileOpen menu options and toolbars with their own. You can
fix that by resetting the toolbars (right-click any toolbar, select
Customise, right-click the menu or toolbar, select Reset), or by re-adding
the normal FileOpen function.
2. Written a function called FileOpen, which is running in place of the
built-in function. You can defeat that by finding their function (it will be
in your normal.dot or in an add-in) and renaming it. However, if this is a
corporate-wide thing, you mightn't have the necessary permissions.
Other work-arounds --
1. Go to Tools > Macro > Macros. Select Word Commands from the 'Macros In'
drop down. Select FileOpen from the command list.
2. Create a macro, called anything, containing this line of code --
dialogs(wdDialogFileOpen).Show
Assign that macro to your File menu.
>A contractor modified the File-Open command (in Word and Excel) so it opens
>a completely different set of dialog windows, so that my good old
[quoted text clipped - 7 lines]
>
> Many thanks in advance.