G
Guest
I have an Access database with linked tables to a SQL server
When I want to set properties like "DisplayControl", "RowSource" etc. by using VBA the contents of the following fields are not saved: RowSource, BoudnColumn, ColumnCount and ColumnWidths
All the others ones (e.g. ListRows, ListWidth) are saved
I use the following code
tdf.Fields(strFieldName).Properties.Append db.CreateProperty("BoundColumn", 3, 1
tdf.Fields(strFieldName).Properties.Refres
tdf.Fields(strFieldName).Properties("BoundColumn").Value = intValu
What am I doing wrong
Jeroen
When I want to set properties like "DisplayControl", "RowSource" etc. by using VBA the contents of the following fields are not saved: RowSource, BoudnColumn, ColumnCount and ColumnWidths
All the others ones (e.g. ListRows, ListWidth) are saved
I use the following code
tdf.Fields(strFieldName).Properties.Append db.CreateProperty("BoundColumn", 3, 1
tdf.Fields(strFieldName).Properties.Refres
tdf.Fields(strFieldName).Properties("BoundColumn").Value = intValu
What am I doing wrong
Jeroen