problems to make a setup with distiller object

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default problems to make a setup with distiller object

    I'm a beginner in programming with VB.net and Acrobat SDK ...

    I have made an projekt to print to ps files .. thats works fine ... and then makes with filetopdf pdf file from this files ... ther a have nearly copied the functions of the example - project of SDK ... DistillerCtrlVB ..

    thats works only on the developer machine ... I have insert a setup projekt and set ther acrodistxlib to register vsdfrCOM but on the machine of the user my program didnt start the distiller process ..

    error is start of the server didnt work ...

    can you say me what must i do to install my app on the users machine ... what must install on the users machine .. now there is only acrobat prof 7.0 and my setup ...
    Arne_Wendt@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Distiller quits when trying to make a pdf
      I've had trouble with my distiller for quite awhile. Yesterday I found the Uninstaller for it and uninstalled it. I reloaded it and added all my...
    2. Have to quit and restart Distiller 6 to make additional PDF's
      I must be missing something because I have tried everything to figure this one out. Never had this problem in previous versions but upgrading to 6 I...
    3. Distiller needs to crash once to make a PDF
      I am sure that this issue was discussed in the past when acrobat 6 came out, however I was unable to find it in my searches. I am experiencing this...
    4. Distiller Problems
      Using Distiller 6.0.2 on Mac OX when I drag an EPS file in Distiller says it did something but doesn't put it any where and wont shut down have...
    5. How do you make View/Proof Setup/Monitor RGB stay selected???
      SUSAN-- I'm a limited user...and had the same question... I finally figured out if I just turned COLOR MANAGEMENT off that my files would open...
  3. #2

    Default Re: problems to make a setup with distiller object

    The user's machine with Acrobat Professional should be fine. Make sure
    it is running as a regular logged on user, not from a service, ASP,
    terminal server etc.

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  4. #3

    Default Re: problems to make a setup with distiller object

    can you write me a little bit more about that .. perhabs an step by step description ...

    have modified the distillerctrlvb sample project !!! and insert there all my other code and functions ... I didnt can work with the orginal sample project distillerctrlvb on the source machine :(
    Arne_Wendt@adobeforums.com Guest

  5. #4

    Default Re: problems to make a setup with distiller object

    >can you write me a little bit more about that .. perhabs an step by step description ...

    I'm not sure what you mean by "step by step description". What you
    describe should work, if this is a normal logged on user. There are
    no extra steps, so far as I know.


    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  6. #5

    Default Re: problems to make a setup with distiller object

    let me write what I had done !

    I have opened the DistillerCtrlVB sample project and inserted there my code and functions ... then I insert a setup project ... then create over this way a setup .. install this on surce machine and when i come in my programm on the point where the function filetopdf from distiller api run then get an error ... my idea was that there is an mistake in this setup ... what must there checked - Which properties I must change ... I think there is a problem with the register propertie of the acrobat distiller com object ??

    have you ever tried to run the sample distillerctrlvb on a other machine as the developermachine ??
    Arne_Wendt@adobeforums.com Guest

  7. #6

    Default Re: problems to make a setup with distiller object

    What error do you get, exactly?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  8. #7

    Default Re: problems to make a setup with distiller object

    (No, I've never used the Distiller API, I'm a plug-in developer, so if
    someone here has more practical experience, do join in!)

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  9. #8

    Default Re: problems to make a setup with distiller object

    the error means that he can start the server .. I think that he meens the distiller server object !!!
    Arne_Wendt@adobeforums.com Guest

  10. #9

    Default Re: problems to make a setup with distiller object

    the error means that he cant start the server .. I think that he meens the distiller server object !!!
    Arne_Wendt@adobeforums.com Guest

  11. #10

    Default Re: problems to make a setup with distiller object

    Ok, what is the line of your code that triggers the error?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  12. #11

    Default Re: problems to make a setup with distiller object

    Dim k As Integer

    ProgressBar_generieren.Value = l

    For k = 1 To intZeilen - 1

    ProgressBar_generieren.Value = intZeilen - 1 + k

    If (pdfDist Is Nothing) Then
    pdfDist = New ACRODISTXLib.PdfDistiller
    pdfDist.bSpoolJobs = True
    End If

    DIM optionsFile As String

    On Error GoTo ErrHandler

    Dim r As Integer
    Dim gefunden As Boolean
    gefunden = False

    For r = 0 To apdf.Length - 1
    If k = apdf(r) Then
    gefunden = True
    Exit For
    End If

    Next

    If Not gefunden Then

    ' Prepare to process the file
    StatusLabel.Text = "Processing page"
    StatusPercent.Text = "0%"
    StatusPageCount.Text = "0"
    bWorking = False
    optionsFile = JobOptsList.Text & ".joboptions"

    InputFile.Text = Trim(directoryName) & Trim(Str(k)) & ".ps"

    ' here we get the error
    pdfDist.FileToPDF(InputFile.Text, "", optionsFile)

    End if

    Next

    thats the part which makes the error !!
    thanks for your help
    Arne_Wendt@adobeforums.com Guest

  13. #12

    Default Re: problems to make a setup with distiller object

    Have you confirmed the exact line which gives the error (I can guess
    but it's better to check)?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  14. #13

    Default Re: problems to make a setup with distiller object

    sorry - its the line : pdfDist.FileToPDF(InputFile.Text, "", optionsFile)

    Now I have made a new setup project and new create a setup ... there I get an error on the Visual Studio Actionlist-Window that He cant create the Registri_Informations .. I think that can be the problem !!!

    can someone say me how can I set to create a setup without this mistake ?
    Arne_Wendt@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139