cycle through labels in box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to cycle through all labels contained in a box to make them bold
on the box's mouse move event. Is this possible?

Also, how can I easily undo these changes when another box's mouse move
event is triggered, without having to retype all the lines of code again?

Thanks,
 
Okay, now it makes sense.

I would write a function that would either bold or unbold the labels for the
option buttons in the frame based on the current frame. Then I would call
that function form the move move event of all my option groups (frames) and
pass it the name of the option group or some value so the function knows
which to make bold and which to make normal.
 
the problem is i dont know the language to write a function:

for each label in box1

..fontbold = true

next label

- doesnt seem to work.
 
Back
Top