I have a form with 6 tabs on a pageframe, and would like to set all the maxlengths to 100 for all textboxes on the form without having to go into each and every tab and each and every textbox property to set.
Is there someway to do it, sorta like closing forms all at once:
But I want to do this with all textboxes on the entire form, pageframe and all.
Any suggestions? ALL help is very appreciated!
CMCC
Is there someway to do it, sorta like closing forms all at once:
Code:
lnFormCount = _Screen.FormCount
For i = 1 To lnFormCount-1
_Screen.Forms(i).Release
ENDFOR
Any suggestions? ALL help is very appreciated!
CMCC