The Browser does not display objects referenced through instance variables or properties, or objects referenced dynamically through string variables.
These are examples of objects referenced through instance variables or properties:
If w_go has this statement (and no other statement referencing w_emp), w_emp does not display as a reference for w_go:
w_emp.Title = "Managers"
These are examples of objects referenced dynamically through string variables:
If a window script has the following statements, the window w_go does not display when the window is expanded. The window w_go is named only in a string:
window mywin
string winname = "w_go"
Open(mywin,winname)
If the DataWindow object d_emp is associated with a DataWindow control dynamically through the following statement, d_emp does not display when the window containing the DataWindow control is expanded:
dw_info.DataObject = "d_emp"