How do you change the caption of a funtional array of command buttons. like all at the same time. or can you? because i have an array of 20 buttons and i am trying to change all 20 captions at the same time.
well if the base is zero then try this code Code (Text): dim x as long do until x =20 button(x).caption = "Hi" x = x + 1 loop
ya i did the same sort of thing. i was just wondering if there was a built in function to make it a little easier. o well thanks for the little code. i always forget about long variables. thanks