I've used ITextSharp to create PDF's from .net. It is the .net port of the open source IText. It has the capability to create the PDF from scratch. But doing that would require formatting the entire document. Instead I created a PDF Form, then filled in the fields of the form using a small class. The most difficult time I has was figuring out how to get the the filled in form into the actual memory stream. The work of the class if in the following function. I can give more details if someone wants them. The sourceforge url is: [http://sourceforge.net/projects/itextsharp/][1] 

      Public Function GeneratePDF() As IO.MemoryStream  
            Dim pdfTemplate As PdfReader  
            Dim stamper As PdfStamper  
            Dim tempPDF As PdfReader
            Dim doc As Document
            Dim msTemp As MemoryStream
            Dim pCopy As PdfCopy
            Dim msOutput As New MemoryStream
    
            pdfTemplate = New PdfReader(m_FormName)
    
            doc = New Document
            pCopy = New PdfCopy(doc, msOutput)
            doc.Open()
    
            For Each pg As FormPage In FormPages
                msTemp = New IO.MemoryStream
                pdfTemplate = New PdfReader(m_FormName)
    
                stamper = New PdfStamper(pdfTemplate, msTemp)
    
                For Each fld As FormField In pg.Fields
                    stamper.AcroFields.SetField(fld.fieldName, fld.fieldValue)
                Next
                stamper.FormFlattening = True
                stamper.Close()
                tempPDF = New PdfReader(msTemp.ToArray)
                pCopy.AddPage(pCopy.GetImportedPage(tempPDF, pdfTemplate.NumberOfPages))
                pCopy.FreeReader(tempPDF)
            Next
            doc.Close()
            Return msOutput
        End Function


  [1]: http://sourceforge.net/projects/itextsharp/