B
Becky
hi to all
Here's a snippet from some of Allen Browne's code.
For Each ctl In frm
For Each prp In ctl.Properties
strOut = strFormName & "." & ctl.Name & "." & prp.Name & ": "
strOut = strOut & prp.Type & vbTab
strOut = strOut & prp.Value
Debug.Print strOut
Next
If ctl.ControlType = acTextBox Then Stop
Next
Instead of printing the output to the immediate window, how do I print it to
a Notepad text file?
Thank you
Becky
Here's a snippet from some of Allen Browne's code.
For Each ctl In frm
For Each prp In ctl.Properties
strOut = strFormName & "." & ctl.Name & "." & prp.Name & ": "
strOut = strOut & prp.Type & vbTab
strOut = strOut & prp.Value
Debug.Print strOut
Next
If ctl.ControlType = acTextBox Then Stop
Next
Instead of printing the output to the immediate window, how do I print it to
a Notepad text file?
Thank you
Becky