How can I distinguish between buttons, checkboxes and radiobuttons on the
  screen if I asking for their classname?

  I tried this:

     foreach $child (keys %{$Win}) {
        if ($child =~ /^-/) {
           next;
        }
    
       ($name) = Win32::GUI::GetClassName($Win->{$child});

        print "$name\n";
     }

  But it tells me they are all buttons (probably because checkboxes and
  radiobuttons are derived from a button class).

  Any way to find out exactly what they are?

  Thanks.

   -----------
   David Hiltz
   Email: [EMAIL PROTECTED]
   Unix System and Network Administrator
   Northeast Fisheries Science Center
   ######&@&######

Reply via email to