With OutTD
.Fields.Append .CreateField("Line", dbText, 5)
.Fields.Append .CreateField("Designation", dbText, 100)
.Fields.Append .CreateField("GORD", dbDouble)
.Fields.Append .CreateField("ReBegPlus", dbDouble)
These are a few of the fields I create in the table. When I open the table in Access in the design view of course there is no Descriptions for any of the fields. How do add a Description for these fields when I create the table using VB6? Is the Description a property? I assign properties to other fields.
Set prpfield = OutTD.Fields("dblSize")
Set prop = prpfield.CreateProperty("DecimalPlaces", dbByte, 3)
prpfield.Properties.Append prop
Thanks
.Fields.Append .CreateField("Line", dbText, 5)
.Fields.Append .CreateField("Designation", dbText, 100)
.Fields.Append .CreateField("GORD", dbDouble)
.Fields.Append .CreateField("ReBegPlus", dbDouble)
These are a few of the fields I create in the table. When I open the table in Access in the design view of course there is no Descriptions for any of the fields. How do add a Description for these fields when I create the table using VB6? Is the Description a property? I assign properties to other fields.
Set prpfield = OutTD.Fields("dblSize")
Set prop = prpfield.CreateProperty("DecimalPlaces", dbByte, 3)
prpfield.Properties.Append prop
Thanks