View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Brotherwarren Brotherwarren is offline
external usenet poster
 
Posts: 18
Default Accessing groups of option buttons

Excellent work!

Thanks Joel.


One more thing, is there a benefit to using:

If Left(cntl.Name, 5) = "Frame" Then
For Each itm In cntl.Controls

instead of:

if typename(cntl) = "Frame" then

?