Which references are not displayed
The Browser does not display the following types of
references.
Objects referenced through instance
variables or properties
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:1w_emp.Title = "Managers"
Objects referenced dynamically through
string variables
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:123window mywinstring 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:1dw_info.DataObject = "d_emp"