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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to find the code behind "GroupOnProject" -PLEASE HELP

Status
Not open for further replies.

vishgoody

Programmer
May 24, 2007
2
NL
please can anyone hrlp in understanding below code

set NewContent = new persistent GroupOnProject

or what is GroupOnProject
 
GroupOnProject is a class in the report.
Look down the structure list on the left and look for GroupOnProject to discover what it is. (Probably a frame.) It could also be in an ROL if your report uses libraires.

set NewContent = new persistent GroupOnProject

Looks like it is dynamically creating a new instance of GroupOnProject and wants that frame as a content frame. (This code appears to be in NewContent() method.)

Persistent keywords says this newly made object will appear in the ROI. (ie: it will be persisyed in the ROI, not just vanish when the method if exitied.)




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top