Thanks. this is the solution.
>-----Original Message-----
>textboxes from the control toolbox toolbar
> on a userform
>
> for i = 1 to 10
> userform1.Controls("Textbox" & i).Text = ""
> Next
>
> on a Worksheet
> for i = 1 to 10
> activesheet.OleObjects("TextBox" & i).Object.Text

= ""
> Next
>
>
>Textboxes from the drawing toolbar
> for i = 1 to 10
> Activesheet.Textboxes("Textbox" & i).Value = ""
> Next
>--
>Regards,
>Tom Ogilvy
>
>"zsola" <szabozdt@ln.matav.hu> wrote in message
>news:242801c5026c$3c8a7e80$a401280a@phx.gbl...
>> Hi Experts,
>>
>> My question is, how can I refer to objects(eg.

textboxes)
>> in a for..next cycle, for instance something like this:
>>
>> for i=1 to 10
>>
>> (textbox & i).text=Cstr(i)
>> 'where (textbox & i) is for representing
>> 'textbox1...textbox10
>>
>> next i
>>
>> Thanks in advance:
>> Zsola

>
>
>.
>