Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Did you actually read the article??? That was basically the whole gist of it that these are "Sorta Hidden".Can't find Column order property anywhere .
With the exception of the Subdatasheet properties, you have no direct design-time access to these properties: None of these properties show up in the datasheet's property sheet. As a result, they can only be set at runtime from VBA code in order to make changes. Interestingly, none of the properties are exposed by ADO or ADOX, so if you want to change them, you'll have to use DAO
Private Sub Form_Load()
Dim ctrl As Access.Control
For Each ctrl In Me.Controls
If Not (ctrl.Tag & "") = "" Then
If Not ctrl.ControlType = acLabel Then
ctrl.ColumnOrder = ctrl.Tag
End If
End If
Next ctrl
End Sub