One common problem that I have had with writing VBA code that hooks on to the import process is debugging. Unlike the other processes that you can write VBA code for the import process is a modal form. This means that the import window has to be on top at all times and you cannot go back to another window in Raiser’s Edge
The problem with this is that you cannot set a break point in your code and you cannot step through the code. This makes debugging code difficult.
There are a couple of work arounds.
Continue reading The problem with imports