SitesMasstec
Programmer
Hello colleagues!
In a Form I have a lot of controls and each one has some code in its procedure ("GotFocus", "LostFocus", "Valid", etc).
I would like to print the code used in the form at once, without having to cut & past using a text editor. Just for documentation of the code used. Is there a way to get the code printed, for example, in a way like this:
Form1:
(Text box) txtMyName:
GotFocus:
this.Readonly=.F.
LostFocus:
this.Readonly=.T.
this.Forecolor=RGB(255,0,0)
(Text box) txtMyBirthDate:
GotFocus:
this.Readonly=.F.
etc etc
Thanks,
SitesMasstec
In a Form I have a lot of controls and each one has some code in its procedure ("GotFocus", "LostFocus", "Valid", etc).
I would like to print the code used in the form at once, without having to cut & past using a text editor. Just for documentation of the code used. Is there a way to get the code printed, for example, in a way like this:
Form1:
(Text box) txtMyName:
GotFocus:
this.Readonly=.F.
LostFocus:
this.Readonly=.T.
this.Forecolor=RGB(255,0,0)
(Text box) txtMyBirthDate:
GotFocus:
this.Readonly=.F.
etc etc
Thanks,
SitesMasstec