ok ok now that i got your attention. well it's not that bad
{{{laughing}}}
im trying to just simply trying to print out a list of textbox names that are on a form but all i can figure out
is how to print every control name on a form.

Dim txt as Object
For Each txt In frmAccountSetup.Controls
Debug.Print txt.Name
Next txt

' is there anyway to get just the textbox names??
Thanks All