PopupMenu.DataSource

From Xojo Documentation

Read-Only Property (As String )
StringValue = aPopupMenu.DataSource

Supported for all project types and targets.

The DataControl that references a table in a database whose fields are displayed.

Notes

Use the DataField property to link a field to be displayed in a PopupMenu. In the IDE, a popup menu of field names will appear. When setting in code, it takes a String. Assign it to the Name property of a DataControl. Note: Database fields can also be displayed via a DataControl using ComboBoxes, TextFields and TextAreas, ListBoxes, CheckBoxes, and StaticText controls.

Example

The following specified the datasource and datafield for the control.

Me.DataSource = "Movies"
Me.DataField = "Title"