Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Viewing All Methods in A Form

Status
Not open for further replies.

Creeder

Programmer
Jul 5, 2000
110
MY
Hi All,
I was wondering is there a utility (something like the class browser) that enable us to see all of the methods and property of a form? It is kind of tedious going through each form and checking for the all of the form methods and property, command button click events, etc.
Unless the only method is to select edit property/method from the menu.

Thanks in advance.

Yue Jeen

 
Hi!

Open VCX file as a table. See the structure, in some fields you will find properties list and methods.

When you just need to scan all methods of form and it subcontrols, use PgUp key at ther top of the code edit window for method, and PgDn at the bottom. This will loop you through all code snippets of the form (or class with member objects).

When you need to find something inside form, but you do not know where, in the find window select 'All objcts'. This will force search through all code of form. I often use this way for complex forms to locate some places I want to change.

Vlad Grynchyshyn
vgryn@softserve.lviv.ua
The professional level of programmer could be determined by level of stupidity of his/her bugs
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top