I needed to use a Find/Replace dialog box in .NET and I wanted to use
the common dialog that is available in the Win32 API. It needed a lot
of marshalling and fiddling with window message. I have created a
class that hides all these things and posted it on my blog. Go to
http://blog.ramondeklein.nl/?p=21 to download the C# source-code (in).
I saw some requests on the net, so I thought I should post it...

Re: Find/Replace dialog box by Tom

Tom
Wed Jun 04 12:39:50 CDT 2008

"I have provided no documentation, but I guess it's pretty self explaining."

For over thirty years, the programmers who have worked for me have tried to
tell me that. But, you know, it's never true. Never has been, never will be.

Nevertheless, thanks for posting.

Tom Dacon
Dacon Software Consulting


"Ramon de Klein" <ramon.de.klein@gmail.com> wrote in message
news:9820730a-44c5-4049-93b1-bf008bb559f9@e53g2000hsa.googlegroups.com...
>I needed to use a Find/Replace dialog box in .NET and I wanted to use
> the common dialog that is available in the Win32 API. It needed a lot
> of marshalling and fiddling with window message. I have created a
> class that hides all these things and posted it on my blog. Go to
> http://blog.ramondeklein.nl/?p=21 to download the C# source-code (in).
> I saw some requests on the net, so I thought I should post it...



Re: Find/Replace dialog box by kimiraikkonen

kimiraikkonen
Sun Jun 08 04:44:32 CDT 2008

On Jun 4, 11:33=A0am, Ramon de Klein <ramon.de.kl...@gmail.com> wrote:
> I needed to use a Find/Replace dialog box in .NET and I wanted to use
> the common dialog that is available in the Win32 API. It needed a lot
> of marshalling and fiddling with window message. I have created a
> class that hides all these things and posted it on my blog. Go tohttp://bl=
og.ramondeklein.nl/?p=3D21to download the C# source-code (in).
> I saw some requests on the net, so I thought I should post it...

Ramon,
You can try to use SendKeys.Send method to call native Find Dialog
box. For example, if you want to call Find dialog box in Webbrowser
control, you can call the built-in one of IE's using:

SendKeys.Send("^f")

Hope this helps,

Onur G=FCzel