Does anyone know what IT solutions exist that can easily generate ‘automatic’ letters?
The documents generated will be based on information entered and various options selected (locally on win OS). So you input the persons details etc, select options and a few documents are spat out the other end, but this information does not need to be stored (except in the saved/printed documents themself). The options get fairly complex - with some options being created based on others options selected.
The text that appears in the letters will depend on the options selected and fields entered.
I know how to do this with VB (creating Word docs), and I have just had a look at Adobe Acrobat manual, which appears to be able to do the same stuff (with a bit of JavaScript thrown in). I am not sure which would be easiest or if there is an easier solution still. Anyone had experience with this stuff?
If I am put on the right track I can work out the implementation myself. Thanks.
Speaking as a programmer with 20 years experience: A lot depends on the versatility of the system that you’re using, but perhaps even more hangs on how well you know that system, and which you’re most comfortable with.
So here’s my suggestion: Create a really simple bare-bones version of what you need, with perhaps only one or two very simple fields in it. Do that in Word, and do it in Adobe, and do it in whatever else, and you’ll probably get an good idea of which is best for you to do the big project in.
We did a project similar to this - if I’m reading you correctly - for a client last summer. We saved all the relevant info in a SQL database then ran it it through some PDF-making program (I can’t remember the name. It wasn’t by Adobe. I will get it from my partner tomorrow) that let us create a complete template. The program runs on the server SQL was able to trigger it every time a new document was created (ie every time the database was updated).
The documents were made up of about 50 different fields with lots of selectable text. So the management of the documents was basically a large grid with lots of selectable fields. That was all done in HTML, ASP and the triggers were VB scripts.
Thats great ZipperJJ. My solution will not need to run over a network, so it is nowhere near as complex as what you have done, but that link is very helpful. Cheers.