| |
microsoft.public.dotnet.framework |
OK, I have an access addin. On startup, I can open my database and enumerate ... Thanks,
the tables in the database:
myApp = (Micorsoft.Office.Interop.Access.Application) application;
myApp.OpenCurrentDatabase("c:\\mydatabase.mdb");
foreach (Microsoft.Office.Interop.Access.AccessObject ao in
myApp.CurrentData.AllTables)
{
System.Windows.Forms.MessageBox.Show(ao.Name.ToString());
add/delete a record from it? It seems like a pretty easy task, but I can't
find an example anywhere or documentation anywhere.
-- John