vote up 1 vote down star

I need to write an automatic updater for a MS Access database and I need it to Delete a specific Form and then Import a new one from another database. If possible, how would you accomplish this in C#?

flag

Import from where? – mavnn Nov 4 at 21:54
Would it not be easier to just replace the entire .MDB file? Or, does this .MDB contain both forms, reports, etc. AND data? – HardCode Nov 4 at 22:18
yea, I have about 100 of these databases that are in active use with loads of data. -OP – Eric P Nov 5 at 0:19
Are these databases ahsred or only ever one user in them at a time? If shared I'm surprised they haven't corrupted or had other wierd errors. See the "Splitting your app into a front end and back end Tips" page at granite.ab.ca/access/splitapp for more info. See the free Auto FE Updater utility at autofeupdater.com to make the distribution of new FEs relatively painless.. The utility also supports Terminal Server/Citrix quite nicely. – Tony Toews Nov 5 at 2:10

1 Answer

vote up 4 vote down check

Hi, you can do so using Docmd.CopyObject method (of Access.Application object)

link|flag
Welcome, Alex! Glad to see yet another expert Access developer arrive at SO. – David W. Fenton Nov 5 at 23:00
Hey, nice to see you here. Hmmm, I didn't realize you could do this. I'll have to check that out someday. – Tony Toews Nov 10 at 6:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.