<< Click to Display Table of Contents >>
RemoveField |
RemoveField(FieldName, [Table])
The RemoveField 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. Example:
Sub CommandButton1_Click()
Screen.Item("E3Browser").Item("Query")._
RemoveField "Field1"
End Sub