View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
John John is offline
external usenet poster
 
Posts: 2,069
Default How to access all the textboxes inside a frame?

something like following may do what you want:

Dim i As Integer
For i = 1 To 10
Controls("TextBox" & i).Text = i
Next
--
JB


"Yajiv" wrote:

I have some 10 text boxes inside a frame. how can i iterate through
them?