This is conflabulating me.

' Make all of the option buttons invisible
VB Code:
  1. p = Option1.Count
  2. For n = 1 To p
  3.     Option1(n - 1).Visible = False
  4. Next n
Later in the code, only the option buttons I need are made visible.

My count is three. When I click on option button 1 at full speed, option buttons two and three select, in sequence - but I only want button 1 to select.

The odd thing is.... if I put a debug in the code on ANY of the above lines, thereby halting the code, when I continue with an F5 - the code works???? That is to say. Option button1 and ONLY option button 1 is clicked and remains selected.

Any idea's on this one chaps?

TIA