Hi all,
Would really appreciate it anyone could help me here!
I send out an update of my DB with conversion routine. In this sub I (amongst other things) also add fields to table.
Set td = db.TableDefs("tblxx_Eigenschaften")
With td
.Fields.Append .CreateField("Forderungsart", dbDouble)
.Fields.Append .CreateField("Gis_Mappe", dbText, 255)
.Fields.Refresh
End With
All I need to do now, is check if this field has already been defined, and if not create it. How can I check, within this "with" statement eg. if the field Gis_Mappe exists already?
Thanks a lot
Marion
Would really appreciate it anyone could help me here!
I send out an update of my DB with conversion routine. In this sub I (amongst other things) also add fields to table.
Set td = db.TableDefs("tblxx_Eigenschaften")
With td
.Fields.Append .CreateField("Forderungsart", dbDouble)
.Fields.Append .CreateField("Gis_Mappe", dbText, 255)
.Fields.Refresh
End With
All I need to do now, is check if this field has already been defined, and if not create it. How can I check, within this "with" statement eg. if the field Gis_Mappe exists already?
Thanks a lot
Marion