Much thanks to the creator and everyone who has made this project possible. It has definitely made things a lot more organized and easier when dealing with the Microsoft.Office.Interop libraries.
I have a question concerning the use of a field property. The following code would normally just work under the Microsoft.Office.Interop.Access and Microsoft.Office.Interop.Dao namespaces.
Dun
I have a question concerning the use of a field property. The following code would normally just work under the Microsoft.Office.Interop.Access and Microsoft.Office.Interop.Dao namespaces.
// open database
NetOffice.AccessApi.Application app = new Application()
Database db = app.DBEngine.Workspaces[0].OpenDatabase(filePath);
TableDef myTable = db.TableDefs[tableName];
Field myField = myTable.Fields["FirstName"];
Properties myProperties = myField.Properties; //I get 39 properties for myField
Property fieldTextAlign = myProperties["TextAlign"];
var value = fieldTextAlign .Value;
Currently when I look at the Properties and Property Class in NetOffice, I get an error:-
base = {"Class not exists: NetOffice.AccessApi.Property"}
Dun