Can you please let me know how to set MS Access Field Caption Property in C# with ADOX?
I already tried this setting:
colFName.Properties["Caption"].Value = "First Name";
and
colFName.Properties["Jet OLEDB:Caption"].Value = "First Name";
but i am encountering with following error message:
ADODB.Properties
Item cannot be found in the collection corresponding to the requested name or ordinal.
Thanks