To print to acrobat you'd have to purchase the Adobe software (i'm not sure of the cost), i'm sure you could find them on the web really easily.<br>
i wouldn't completely rule out doing it to Word though, going with something like the two of these methods you might be able to figure something out.<br>
<br>
Dim WordPath, DocPath As String<br>
Dim Retval As Variant<br>
WordPath = "C:\program files\microsoft office\office\winword.exe"<br>
DocPath = "c:\YourDocNameAndPath.doc"<br>
Retval = Shell(WordPath & " " & DocPath, vbMaximizedFocus)<br>
<br>
this opens word and your document and you may be able to append to it this way, or<br>
<br>
<br>
Dim oApp As Object<br>
Dim objWord As Object<br>
Dim report1 as string<br>
dim report2 as string<br>
<br>
report1 = "Your1stReport"<br>
report2 = "Your2ndReport"<br>
<br>
Set oApp = CreateObject("Word.Application"

<br>
oApp.Visible = True<br>
Set objWord = CreateObject("Word.Basic"

<br>
objWord.FileNew<br>
'creates a new document which you can then use <br>
<br>
<br>
objWord.Insert report1<br>
objWord.InsertPara 'inserts a space<br>
objWord.Insert report2<br>
<br>
etc...<br>
<br>
you may have to Dim the report names and such, but you can take a look at this method.<br>
depending on your report formatting and all it may work, or it may be a hassle. this is something that i've been playing with lately, so if i figure the exact logistics out i'll let you know. i'll be away until Monday (going to Savannah,Ga for St. Patty's day) but will be back and willing to help if you still need it then.<br>
<br>
<br>
good luck<br>
<p>Brian Famous<br><a href=mailto:bfamous@ncdoi.net>bfamous@ncdoi.net</a><br><a href= > </a><br>