Tables and look ups

  • Thread starter Thread starter Wanjohi Patrick
  • Start date Start date
W

Wanjohi Patrick

1)The field generated by the following code will generate
a Yes/No field type but will not display the Check box
when I open the table.
How do I create the field so that the table opens with a
Check box?

Dim dbs As Database
Dim newTable As TableDef
Dim newfld As Field
 
1 - you have to add a property DisplayControl to your field and set it value
to "Check Box"
see online help topic "DisplayControl Property" and "Property Object" for
more info
 
Back
Top