I want to distribute a routine to modify an existing database table structure using code. I got one part to work - in short, it looks like this:
Set tdf = db.TableDefs![Subscriber Master]
Set fldSSD = tdf.Fields("SeasonalStartDate"
fldSSD.ValidationRule = ""
However, I cannot modify the existing text data type FieldSize (from 18 to 20) or an existing input mask on another text field (from ###### to CCCCCC). Any suggestions? Thanks.
Set tdf = db.TableDefs![Subscriber Master]
Set fldSSD = tdf.Fields("SeasonalStartDate"
fldSSD.ValidationRule = ""
However, I cannot modify the existing text data type FieldSize (from 18 to 20) or an existing input mask on another text field (from ###### to CCCCCC). Any suggestions? Thanks.