One way to learn the innards of Access programming with VBA is to create macros that do what you want, then convert them to VBA and have a look at how the task was done.
That is one thing I would do in your case. Since you can accomplish what you want one-at-a-time from the menu system, you should be able to create a macro that does the same thing.
Having done that, you can convert the macro to VBA to see how to set that sort of thing up in code. (That is not a step to facilitate what you are doing, since, if the macro does the job âyouâre there!â so to speak.)
One advantage to converting to VBA though, is that you can add error handling, which will allow you to step over a 'stumble,' and will make it so that you can include notification on the screen of errors or progress.
|