RemoveField

<< Click to Display Table of Contents >>

 

RemoveField

RemoveField(FieldName, [Table])

This method removes a field previously included in a Query. The FieldName parameter determines the name of the field to remove. The Table parameter represents the name of the table to which this field belongs. The next script contains an example of using this method.

Sub CommandButton1_Click()
  Screen.Item("E3Browser").Item("Query")._
    RemoveField "Field1"
End Sub

Was this page useful?