Subscriber portal
Gets or sets a data source that should be used by the control or the form.
public int dataSource([anytype value])
The following example shows how to set and return the data source for the combo box control.
int i; // The combo variable was previously assigned // as a FormComboBoxControl variable. // Retrieve the data source. i = combo.dataSource(); // Set the data source. combo.dataSource(tablenum(CustTable));