Adobe 9 - Installer issue - Calls another program installer?

I can download the program and run the installer just fine. The problem starts when the installer calls ACMSETUP.EXE which calls a startup of my 16-BIT Microsoft ODBC Installer program. I'm not even sure why it's still on my machine, but it is. The Adobe installer seems to be calling it from somewhere and even if I cancel the ODBC install, the Adobe program fails out with no install.
Anyone see this?

I recommend the Acrobat forums. CreatePDF is something quite different. You should also contact the PC supplier for your install disk, it's their job to provide it to you. Good luck!

Similar Messages

  • Calling another program

    Is it possible to call another program (vlc media player in my case) in a VI???I dont want to use the Active X control for playin videos as it does not have much playback functions...

    Use the System exec.vi to launch any executable from LabVIEW in your case VLC player.  Provide the required inputs path, command line args so that you can obtain the desired functionality.
    With regards,
    JK
    (Certified LabVIEW Developer)
    Give Kudos for Good Answers, and Mark it a solution if your problem is solved.

  • Calling another program from the current program

    Hi all,
    In our requirement we are calling another program from our current program .
    In the current program( from which we are calling ) we are giving file name in the selection screen
    and when we run the current program we are successfully going to other program but our main requirement is to higlight the file name which we had given earlier .
    Note :  The called program doesnt have any selection screen.

    HI
    use EXPORT and IMPORT key words for passing data from one program to another program.
    as the called program is available in the same session you can use above key words which means you are accessing ABAP MEMORY.
    You can also use SET and GET key words which means SAP memory
    take F1 help there are examples tooo and detailes explanation abou the same
    Regards
    Ramchander Rao.K
    Edited by: Ramchander Krishnamraju on Dec 24, 2008 7:05 AM

  • Calling another program and waiting for output

    Hi,
    I'm writing a program that passes a file created for an application called Net Sim but has to wait for the output. Net Sim lies in another directory from the java files and I don't know how to call the program with the file created as a parameter, such as:
    ns2 network1.tcl
    where 'ns2' is the dos command to run net sim and 'network1.tcl' is a file passed as a parameter to the program.
    I've tried
    try{
    Runtime r = Runtime.getRuntime();
    r.exec(" <directory> ");
    }catch(IOException e){
    System.out.println("Error " +e);
    This doesn't work though and I could use some help, as well as how to save the file created by the program in another directory.
    Finally, I need to know how to make the program wait for the output from net sim which is a file I intend to use. Can I do this with a while loop etc.?
    I thank you in advance for any help,
    Regards,
    Gary.

    Here's an article from JavaWorld describing some of the pitfalls when using Runtime.exec() that might help you:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Call another program in first program

    hi,
    i need to perform to call another report in my current report. so how am i going to do so?
    how report work:
    the report are going to run as background job. once the report run, it will send out the report in text file to user. and then i want it to trigger report 2. report 2 work the same, it will send another text file to user.
    and the parameter for both the report is on current date only.
    so how am i going to code in my first report program, to call the second report program, and to execute it?
    thanks
    Edited by: ben leen lee on May 14, 2008 3:57 AM

    Hi, 
    clear: d_JOB_COUNT.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            JOBNAME  = d_JOBNAME
          IMPORTING
            JOBCOUNT = d_JOB_COUNT.
        submit ZFI_AGEWISE_PERFORMANCE
        VIA JOB d_JOBNAME
        NUMBER  d_JOB_COUNT
        with IKUNNR   IN r_id
        with s_vertn  in S_VERTN
        with s_hkont  IN S_HKONT
        with IBUDAT   eq IBUDAT
        with P_BUKRS  eq P_BUKRS
        with s_umskz  in s_umskz
    *with R1 = R1
        WITH R2 = R2
    *with r3 = R3
        WITH P_SESS = P_SESS
        AND RETURN.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            JOBNAME      = d_JOBNAME
            JOBCOUNT     = d_JOB_COUNT
            STRTIMMED    = 'X'.
    Reward Points

  • How to call another program as root in servlet

    In my servlet, I want to call another background programs (writeen in c) to do some tasks and gather the output of them as the output of my servlet. Is there any way to do so like Suexec in apache.
    Thanks

    sorry I forgot mention that the c program required the caller had root privilege.This is the problem I facing now.
    Thanks

  • Make a Java program call another program??

    Is there a way to make a Java program execute another program?

    Why dont we demonstrate:
    Program (Windows-based) Calculator.exe
    Code:
    try {
    Runtime.getRuntime().exec("c:/windows/calc.exe");
    } catch(IOException e) {}

  • Can LabView start/call another program such as QuickTime?

    Hi,
    I want to use my LabView program to start up another program. Is this possible? If so how is it done?
    The program I have in mind is QuickTime. Will I be able to pass the name of the file I want it to play as an argument and specify where the new window will open?
    Thanks,
    Dave.

    Hi
    You could also place an ActiveX-container in a vi. So you can select a file and set the window position.
    Just have a look at the simple attachment.
    Hope this helps.
    Thomas
    Using LV8.0
    Don't be afraid to rate a good answer...
    Attachments:
    quicktime.vi ‏25 KB

  • Calling another program with in a program

    Hi experts,
            i want to call a program (second) from the first program. The problem is that the first program is called during the update task. so i think we cant use the submit statement.
    Thnak you in advance.
    Arul
    Edited by: arul m on May 6, 2009 12:36 PM

    Hello,
    Try this FM
    TH_IN_UPDATE_TASK
    check this
    http://help.sap.com/saphelp_nw04/helpdata/EN/fa/f23c15330411d5992100508b6b8b11/content.htm

  • Issue on ZSAPLINK program installer

    Hi all,
    I try to install ZSAPLINK program for nugget creation. But I am getting a syntax error while checking the
    ZSAPLINK Installer programand it is
         "Direct access to components of global class CL_IXML is not possible ( class CL_IXML defination load
          statement is missing)."
    But the class is defined globally and is active. I am try to install it in 4.7 c.
    Regards,
    M Sri Suktha.

    Hi,
    which basis level do you have? It needs to be 6.20 or higher.
    Cheers

  • Unable to call another program in servlet

    Hi,
    I'm developing a Java program in Netweaver. It is a servlet program. External server will call this servlet program to pass the value in and then i use the value and pass to a stateless session bean. But now i'm required to make some change but in certain condition, it will use the value and pass to another servlet in another server.
    So i had changed my code as below.
         protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              String xml_response = "";
              String msg = request.getParameter("message").trim();
              FileReader fread = null;
              BufferedReader bread = new BufferedReader(new FileReader("D:\\filter.txt"));
              String line;
              ArrayList moList = new ArrayList();
              while((line = bread.readLine())!=null)
                    String[] moNum = line.split(",");
                    for(int i=0; i<moNum.length;i++)
                          moList.add(moNum<i>);
            bread.close();
               try {
                   xml_response = "700";
                   response.setContentType("text/html");
                   PrintWriter out = response.getWriter();
                   out.println("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
                   out.println("<status>" + xml_response + "</status>");
                   out.close();
                            if (moList.contains(ms)) {
                        response.sendRedirect("http://192.168.1.1:50000/adapter/msgtext?sms=" + sms + "&moid=" + mo_id + "&msisdn=" + msisdn);
                            } else {
               } catch ......
    I have a xml to response to the server that pass me the value. Need that to inform them i had received the msg. So now i not sure the error is it caused by the XML part. I already close it but when i try to run this i get this error message.
    #com.sap.engine.services.servlets_jsp.client.RequestInfoServer#sap.com/AdapterWSEAR#com.sap.engine.services.servlets_jsp.client.RequestInfoServer#J2EE_GUEST#0####9f7f9e100bc411debf5b001a6467cb54#SAPEngine_Application_Thread[impl:3]_30##0#0#Error##Plain###application [moadapter] Processing HTTP request to servlet [SendMOText] finished with error. The error is: java.io.IOException: Bad file descriptor
         at java.io.FileOutputStream.write(Native Method)
         at java.io.DataOutputStream.writeBytes(DataOutputStream.java:254)
         at net.emisolutions.controller.adapter.servlet.SendMOText.doPost(SendMOText.java:163)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#sap.com/AdapterWSEAR#com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl#J2EE_GUEST#0####9f7f9e100bc411debf5b001a6467cb54#SAPEngine_Application_Thread[impl:3]_30##0#0#Error#1#/System/Server/WebRequests#Plain###application [moadapter] Processing HTTP request to servlet [SendMOText] finished with error.
    The error is: java.io.IOException: Bad file descriptor
    Exception id: [001A6467CB54005E0000475100001A740004649841331F6F]#
    #com.sap.engine.services.servlets_jsp.client.RequestInfoServer#sap.com/AdapterWSEAR#com.sap.engine.services.servlets_jsp.client.RequestInfoServer#J2EE_GUEST#0####9f7f9e100bc411debf5b001a6467cb54#SAPEngine_Application_Thread[impl:3]_30##0#0#Error##Plain###application [moadapter] Cannot send an HTTP error response [500 Application error occurred during request processing. (details: java.io.IOException: Bad file descriptor)]. The error is: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException: The stream is closed.
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:170)
         at javax.servlet.ServletOutputStream.print(ServletOutputStream.java:135)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.HttpServletResponseFacade.sendBodyText(HttpServletResponseFacade.java:996)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.HttpServletResponseFacade.writeError(HttpServletResponseFacade.java:987)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.sendError(HttpHandlerImpl.java:973)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleGeneralException(HttpHandlerImpl.java:878)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.processError(HttpHandlerImpl.java:869)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:412)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Appreciate if anyone can help. I tried to google and find the error message that is given but unable to find it. What i think of is the XML that cause error. Any idea for this?
    Thanks.

    Solved.
    The XML caused the problem. I need to include the XML in the if statement instead of outside.

  • Calling another program in the print program through FORM ENTRY

    Hi All,
    Have a requirement that I need to submit the program with variant to a print program.
    But it is giving dump "Statement "SUBMIT" is not allowed in this form" while executing through VF04.
    I have tried by using CALL FUNCTION  "func" in update task .Inside the "func"  in I have coded the logic of
    submit program using selection-set VARIANT.
    Even then while executing through VF04 got the dump "DYNPRO_SEND_IN_BACKGROUND" and "POSTING_ILLEGAL_STATEMENT ".
    Kindly advise to resolve the issue.

    Hi,
    PLease make sure that u r using both smartforms and report..
    Once the function called the report program, whether control back to the print program..
    Using debugger please check..
    put a break-point in your program and find where that dump is arised..
    whether u want report only or smartform only...
    If the same problem arises again,
    Paste your report program code inside the print program instead of using SUBMIT..
    let me know what the issue u r facing
    regards
    vijay

  • Calling another program from a Dynpro screen

    Hi,
    We have a custom screen to create an equipment. When users click on Save, the screen flow goes into BDC and creates the equipment.
    After the equipment is created, we need to execute another custom program to create Measuring points.
    How can I call this custom program and still get back to my equipment master screen?
    I have coded it as follows but the result is the end result of the measuring point screen and not my original equipment master screen.
    SUBMIT ZCREATE_MEASURING_POINTS USING SELECTION-SCREEN '1000'
                      WITH SELECTION-TABLE rspar_tab
                      AND return.

    I have coded it as follows but the result is the end result of the measuring point screen and not my original equipment master scree
    Does it mean that you end up in list output of measuring custom program? If so, you have to export this resulting list to memory, which will suppress showing it.
    SUBMIT ZCREATE_MEASURING_POINTS USING SELECTION-SCREEN '1000'
    WITH SELECTION-TABLE rspar_tab
    EXPORTING LIST TO MEMORY
    AND return.
    This way you will be back on calling program.
    Regards
    Marcin

  • How to call another program from LabVIEW?

    Hi!
    Is there anyone that can answer my question? I have found a similar thread where the user needed to call labVIEW from some program but I want to do the opposite.
    I made a program in labVIEW that communicates via COM-ports (serial communication) with the processor I use at the job (Ubicom´s IP2022).
    Now I want to add more funcionality to this program. I want to be able to program re-program IP2022 through this LabVIEW application.
    The programming is done via an Ethernet-dongle. I start a program called IP2kProg, I write the ip-address of the dongle and the program-file (.elf) downloads at this address. But how can I do this from
    LabVIEW, do I need to open IP2kProg or can I send some values to it via LabViEW?
    Ant suggestions?
    Thanks, Amir

    Amir,
    There are couple of options:
    1.  If your IP2kProg program has a command-line interface, you can use LabVIEW's System Exec.vi and send the commands and parameters to it. 
    2.  If the IP2kProg has an API / exported functions, you can call them from LabVIEW using the Call Library Function Node. 
    Hope this gives you some ideas. 
    -Khalid

  • Java installer to launch another native installer

    Hi guys,
    Objective i want to achieve:
    produce a multi-platform installer (Windows 2000/XP/2003 Server/Vista and Linux) that installs Open Office and write to a .properties file the path folder where OpenOffice is installed.
    for linux i want to use command line installer not GUI wizard !
    the installer console or gui must give a wizard where user can choose to install or not OO and if he decides not to install OO the installer ask him about existing OO installation folder path, if he don't provide path or gives wrong one installations should fail.
    i would appreciate a lot if some one helps me to write this feature in java or probably use some open source installers.
    ps: i checked izpack : http://www.izforge.com/izpack/
    it's good tool but don't know how to do above task with izpack .if some one is knowledgeable with izpack i would appreciate some help
    your help is very appreciated for this URGENT task !
    thanks a lot.
    othman.

    Hi guys,
    Objective i want to achieve:
    produce a multi-platform installer (Windows 2000/XP/2003 Server/Vista and Linux) that installs Open Office and write to a .properties file the path folder where OpenOffice is installed.
    for linux i want to use command line installer not GUI wizard !
    the installer console or gui must give a wizard where user can choose to install or not OO and if he decides not to install OO the installer ask him about existing OO installation folder path, if he don't provide path or gives wrong one installations should fail.
    i would appreciate a lot if some one helps me to write this feature in java or probably use some open source installers.
    ps: i checked izpack : http://www.izforge.com/izpack/
    it's good tool but don't know how to do above task with izpack .if some one is knowledgeable with izpack i would appreciate some help
    your help is very appreciated for this URGENT task !
    thanks a lot.
    othman.

Maybe you are looking for

  • AppleScript, what is the problem here?

    Hello, I am making my way through this book and I have come across something that is not making sense to me. I entered this script from a book; tell app "Finder" set these_items to sort (get every document file of the front finder window) by creation

  • Hard lock when waking from sleep

    I have a nVidia 9400m MacBook Pro 13 and I've been having consistent problems waking the machine from sleep. Once the computer goes to sleep and I wake it (either by opening the lid or pressing the power button if the lid is open,) I get a display of

  • File sender adapter: archiving not possible with transp.prot "filesystem,

    Hi XI gurus, in my FILE sender adapter I want to archive the processed files to a separate sub-directory of the "in" directory. It works if I use transport protocoll "FTP" with a specific user but it don't works when I use transport protocoll "file s

  • IPod plays 3 seconds of a song, then skips to middle of next song

    I've had this (30GB Black video) iPod for about a week and just started having this problem yesterday. Every song I go to it will play about 3-5 seconds of that song and then skip to the very middle of the next song. I don't know what to do. I have a

  • A few question on AE insert

    1) inside the AE , I need to insert something into table , sure I create a table in oracle developer, or create a recode in Application design and then build the table, are these two methods have any different? 2) I do the insert inside the AE, why I