<DW Control Name>.Object.DataWindow.Objects
or
<DW Control Name>.Describe("DataWindow.Objects")
both returns a TAB separated list of all objects.
eg. "emp_name~temp_street~tlabel_emp_name~tlabel_emp_street"
from there on you can extract all the names of objects from the returned string. To get the type of the objects use
<DW Control Name>.Describe("<objectname>.Type")
eg.
dw_1.Describe("emp_name.Type")
dot-notation doesn't work here if you do not know the objectnames during coding.
For PB8 and later (maybe PB7 but I only know for PB8 and above) you can click NEW in the IDE and from the opened window choose tools and than datawindow syntax.Than you get all possible dw-properties with the syntax for describe/modify and dot notation
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.