From: andreas on
Dear Experts:

I would like to intercept Word's built in command for Search and
Replace in a Macro.

How?

Help is much appreciated. Thank you very much in advance.

Regards, Andreas
From: "Tony Jollans" My forename at my surname dot on
Just create macros called EditFind, EditReplace, and/or EditGoto and they
will be run instead of the respective commands.

--
Enjoy,
Tony

www.WordArticles.com

"andreas" <andreas.hermle(a)gmx.de> wrote in message
news:a5d54188-d1ee-4829-9b07-18cb4875b022(a)q15g2000yqj.googlegroups.com...
> Dear Experts:
>
> I would like to intercept Word's built in command for Search and
> Replace in a Macro.
>
> How?
>
> Help is much appreciated. Thank you very much in advance.
>
> Regards, Andreas

From: andreas on
On 11 Apr., 19:54, "Tony Jollans" <My forename at my surname dot com>
wrote:
> Just create macros called EditFind, EditReplace, and/or EditGoto and they
> will be run instead of the respective commands.
>
> --
> Enjoy,
> Tony
>
>  www.WordArticles.com
>
> "andreas" <andreas.her...(a)gmx.de> wrote in message
>
> news:a5d54188-d1ee-4829-9b07-18cb4875b022(a)q15g2000yqj.googlegroups.com...
>
>
>
> > Dear Experts:
>
> > I would like to intercept Word's built in command for Search and
> > Replace in a Macro.
>
> > How?
>
> > Help is much appreciated. Thank you very much in advance.
>
> > Regards, Andreas- Zitierten Text ausblenden -
>
> - Zitierten Text anzeigen -



Hi Tony,

thank you very much for your swift help.

Oh, I think I was asking the wrong question. I was gonna ask how I can
call up the 'Search-And-Replace' Dialog-Field in a word 2003 macro?

Help is much appreciated. Thank you very much in advance.

Regards, Andreas
From: "Tony Jollans" My forename at my surname dot on
Is this what you want?

Dialogs(wdDialogEditReplace).Show

also, perhaps ...

Dialogs(wdDialogEditFind).Show
Dialogs(wdDialogEditGoTo).Show

--
Enjoy,
Tony

www.WordArticles.com

"andreas" <andreas.hermle(a)gmx.de> wrote in message
news:363ca24b-b0fe-40d1-8884-8cfaf76ce8a8(a)e7g2000yqf.googlegroups.com...
On 11 Apr., 19:54, "Tony Jollans" <My forename at my surname dot com>
wrote:
> Just create macros called EditFind, EditReplace, and/or EditGoto and they
> will be run instead of the respective commands.
>
> --
> Enjoy,
> Tony
>
> www.WordArticles.com
>
> "andreas" <andreas.her...(a)gmx.de> wrote in message
>
> news:a5d54188-d1ee-4829-9b07-18cb4875b022(a)q15g2000yqj.googlegroups.com...
>
>
>
> > Dear Experts:
>
> > I would like to intercept Word's built in command for Search and
> > Replace in a Macro.
>
> > How?
>
> > Help is much appreciated. Thank you very much in advance.
>
> > Regards, Andreas- Zitierten Text ausblenden -
>
> - Zitierten Text anzeigen -



Hi Tony,

thank you very much for your swift help.

Oh, I think I was asking the wrong question. I was gonna ask how I can
call up the 'Search-And-Replace' Dialog-Field in a word 2003 macro?

Help is much appreciated. Thank you very much in advance.

Regards, Andreas

From: andreas on
On Apr 12, 10:45 am, "Tony Jollans" <My forename at my surname dot
com> wrote:
> Is this what you want?
>
> Dialogs(wdDialogEditReplace).Show
>
> also, perhaps ...
>
> Dialogs(wdDialogEditFind).Show
> Dialogs(wdDialogEditGoTo).Show
>
> --
> Enjoy,
> Tony
>
>  www.WordArticles.com
>
> "andreas" <andreas.her...(a)gmx.de> wrote in message
>
> news:363ca24b-b0fe-40d1-8884-8cfaf76ce8a8(a)e7g2000yqf.googlegroups.com...
> On 11 Apr., 19:54, "Tony Jollans" <My forename at my surname dot com>
> wrote:
>
>
>
>
>
> > Just create macros called EditFind, EditReplace, and/or EditGoto and they
> > will be run instead of the respective commands.
>
> > --
> > Enjoy,
> > Tony
>
> >www.WordArticles.com
>
> > "andreas" <andreas.her...(a)gmx.de> wrote in message
>
> >news:a5d54188-d1ee-4829-9b07-18cb4875b022(a)q15g2000yqj.googlegroups.com....
>
> > > Dear Experts:
>
> > > I would like to intercept Word's built in command for Search and
> > > Replace in a Macro.
>
> > > How?
>
> > > Help is much appreciated. Thank you very much in advance.
>
> > > Regards, Andreas- Zitierten Text ausblenden -
>
> > - Zitierten Text anzeigen -
>
> Hi Tony,
>
> thank you very much for your swift help.
>
> Oh, I think I was asking the wrong question. I was gonna ask how I can
> call up the 'Search-And-Replace' Dialog-Field in a word 2003 macro?
>
> Help is much appreciated. Thank you very much in advance.
>
> Regards, Andreas- Hide quoted text -
>
> - Show quoted text -

Hi Tony,

exactly what I was looking for! Thank you very much for your
professional help.
Regards, Andreas