T
touf
Hi,
I need to change the labels of all controls in a form, for this I wrote a
code that loop form.controls and set the text property (to control.name for
example).
The problem is that some controls don't have a TEXT property (tabpages for
example)
Is there a way to do this?
Thanks
here is my code:
==========
dim cnt as control
for each cnt in myForm.controls
cnt.text = cnt.name
next
I need to change the labels of all controls in a form, for this I wrote a
code that loop form.controls and set the text property (to control.name for
example).
The problem is that some controls don't have a TEXT property (tabpages for
example)
Is there a way to do this?
Thanks
here is my code:
==========
dim cnt as control
for each cnt in myForm.controls
cnt.text = cnt.name
next