Hello,
I want to add new column to my Access 97 table:
It works, but next I want to change the Access property of MyCol column: "Format" to "Fixed" and "Decimal Places" to 2.
I know how to do it directly in Access 97, but how i can do it in vb.net code?
Thank You in advance for any suggestions,
Larry
I want to add new column to my Access 97 table:
Code:
fTable = fCatalog.Tables("tbQualityData")
fTable.Columns.Append("MyCol", ADOX.DataTypeEnum.adCurrency)
fTable.Columns("MyCol").Properties("Default").Value = 2
I know how to do it directly in Access 97, but how i can do it in vb.net code?
Thank You in advance for any suggestions,
Larry