in reply to Searching POD documentation on windoz

  1. Perldoc works on Win32 just like on Unix, but I see no index capabilities.
    perldoc Tk::Event
  2. You could download `tcgrep` from the Perl Power Tools project (which seeks to re-implement Unix in pure Perl), and use it to scan the HTML files. This is the solution I use on Windows; `tcgrep` rocks!
    tcgrep -ir TK_EVENTTYPE_ATOM C:\a\Perl\html\site\lib\Tk
  3. You could try `podgrep` from the pmtools distribution. I just now discovered this, and have not tried it yet.