View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
arjen van der wal arjen van der wal is offline
external usenet poster
 
Posts: 24
Default Grouping radio buttons?


Hi Fabz,

There is a GroupName property to group option buttons together. I'm not
that familiar with VSTO, but when assigning the property by code in VBA this
works:

Sheet1.OptionButton1.GroupName = "GroupA1"

Hopefully his helps a bit.