Traditionally within Forms it has been rather cumbersome to get to the QueryBuildDataSource for a specific FormDataSource within Forms. You had to write code such as this: public void FormDataSource::init() { QueryBuildDataSource qbds; super(); qbds = this.query().dataSourceTable(tableNum(CustTable)); } That’s all fine and dandy if you have a simple Form, but on some Forms you might have multiple instances of CustTable , especially with the advent of ReferenceDataSources . In these cases you might...(read more)
↧