Command line for Acrobat Reader

Hello
In an application in VB.NET, I throw open a PDF file using the reading program by default in Windows
Is there a command line that can be open it without the left column?
Thank you for your response
Claude Azoulai

I sort my problem, this may be not the best solution, <br /><br />I review last few replies, try to understand what go wrong, it may be 7.0.9 weakness - <br /><br />mysolution:<br />install xwing on my PC<br />login AIX 5L server by putty<br />#export DISPLAY=<myipaddressxxx.xxx.xxx.xxx>:0.0<br /><br />then, <br />#acroread -toPostScript a.pdf a.ps<br /><br />Works:-)

Similar Messages

  • OLE Automation for Acrobat Reader

    Hello guys
    I have been reading some lines about OLE Automation for Acrobat READER and Full Acrobat.
    So far I have seen most saying that Reader is not fully compliant with OLE. I really have zero experience with Adobe and before I buy a full acrobat license, I want to make sure of the following:
    What I need to do is the next 4 simple calls:
    Connect to Acrobat
    Open a pdf file in invisible mode
    Perform "Select All"
    Copy Selection to clipboard
    After that, I will importclipboard to my datawindow and I will be done for my programming task.
    Have you had similar experiences about Acrobat OLE for PDF ?
    some references are in help.adobe.com/livedocs/acrobat_sdk/10/Acrobat10_HTMLHelp
    Thanks so much in advance for any hint.
    Regards

    Hello again
    Chris, thanks so much for your very quick response.
    At a first glance, the PDF Toolkit looks good and with a good price too, but I did not see if I can call functionality from PowerBuilder code without opening a user interface. Are you familiar with this ?
    Stuart, very nice approach for my need, but I apologize for not explaining clearly what I want.
    I just want to process the content of some lines in the file to find specific strings.
    As you may see, if you open the file with Adobe Reader or Adobe Acrobat and go to the edit menu, by clicking "Select All" and "Copy" you will get the text ready for pasting.
    I want to automate this process to prevent the users from opening the Adobe application.
    I'm now testing with the functions provided by Adobe documentation to perform OLE Automation and ALMOST gave me what I need with the following code:
    Documentation is found in
    http://help.adobe.com/livedocs/acrobat_sdk/10/Acrobat10_HTMLHelp/wwhelp/wwhimpl/js/html/wwhelp.htm?&accessible=true 
    // Start Code
    boolean lb
    oleobject luo_app, luo_file
    luo_app = create oleobject
    luo_app.connecttonewobject('AcroExch.app')
    luo_file = create oleobject
    luo_file.connecttonewobject('AcroExch.AvDoc')
    luo_file.open('c:\some_file.pdf')
    // Next three lines are for visual debugging and confirming that file is opening well during testing of code :=)
    luo_file.show()
    luo_file.bringtofront()
    luo_file.setviewmode(1)
    // Next two lines return FALSE, meaning they did not execute because the words "Select All" (or "SelectAll") and "Copy" are not the right words linked to the
    // menu items
    lb = luo_app.menuitemexecute('Select All')    // Neither "SelectAll"
    lb = luo_app.menuitemexecute('Copy')
    // End of code
    Everything works fine except the two lines. The Adobe application is open and the file shown, but when calling "Select All" and "Copy" in the function menuitemexecute, Adobe does not interpret these phrases.
    Just to confirm that menuitemexecute has the right syntax, I tested a call for luo_app.menuitemexecute("find") and this command is well interpreted by Adobe, which immediately opens the find window at the right corner of the file
    I hope not to be too dense with this explanation ( but maybe I was )     :=)
    Thanks for your feedback

  • Medical device licensing for Acrobat Reader

    Adobe states, in EULA for Acrobat reader version 9, the following:
    Quoted
    You will not use any Adobe Runtime on any non-PC device or with any embedded or device version of any operating system. [...Examples...] You may not use it on ... kiosk, medical devices...
    This is the question:
    I need to use Acrobat Reader on a "medical" device that is controlled by a Panel PC with OS Windows XP Professional. This is just a simple controller and has no contact with patients and has no life substainig applications. I don't need to distribute Acorbat Reader with interface software, but, if needed, it must be called from command line (the program is downloaded and installed by final user).
    I don't understand if I need special licensing, since it is installed on a common operating system, not developed for particular applications. Such examples are applicable only when OS is embedded or customized for control devices or this regulation is mandatory also for this kind of application?
    In case I need special licensing, what should I do? Are there any fees?
    Thanks.

    I just received an auto-update for Reader on
    my Droid phone. The new SEARCH function is very much
    appreciated and welcome.
    But, we have a serious security system that we are trying to get
    to run on the Droid and it depends on being able to navigate around
    building floor plans that have embedded links. Reader does not recognize
    that the links are even there.
    All you need to do is add the ability to use embedded links in a PDF
    and we will have a super system.

  • Clearmake: Warning: Too many command lines for "pcscfg.cfg"

    Hi,
    We are in the process of migrating an application(contains pro*C code) from oracle 9i to 10g.
    When the application is compiled on oracle 9i the compilation used complete with out any problems.
    After we changed the ORACLE_HOME parameter in our makefile to point to 10g home. clearmake
    gives the following Warning. though the build is successful
    clearmake: Warning: Too many command lines for "pcscfg.cfg"
    Could anybody please help me in getting rid of this warning?
    Regards
    Srikrishan

    Hi,
    I have removed all unwanted things from the makefile, but the problem is still there.
    I have included a sample program and the makefile which reproduces the problem.
    The problem goes away if I comment out 4th line from the makefile and use 5th line instead
    Could anybody please help?
    #################The contents of the make file are #####################
    targets: proctest
    #ORACLE_HOME= /data/oracle/product/9.2.0
    ORACLE_HOME= /data/tsd_oracle/hpux/10.2.0.2
    include $(ORACLE_HOME)/precomp/lib/env_precomp.mk
    #include /data/oracle/product/9.2.0/precomp/lib/env_precomp.mk
    ORACLEINCLUDES= -I$(ORACLE_HOME)/precomp/public
    PROCSYSINCLUDEOPT=sys_include='(/usr/include,/opt/aCC/include,/opt/aCC/include/iostream)'
    ALLPROCINCLUDEOPTS= $(PROCSYSINCLUDEOPT)
    PROCPPFLAGS= sqlcheck=full lines=yes code=cpp def_sqlcode=yes $(ALLPROCINCLUDEOPTS)
    ACC=/opt/aCC/bin/aCC
    ORACLELIBS= -L $(ORACLE_HOME)/lib32 -l:libclntsh.sl
    #===========================proc test==================================
    proctest:proctest.o
    $(ACC) -o proctest $(ORACLELIBS) proctest.o
    #========================= General target rules ============================
    proctest.o:
    $(ORACLE_HOME)/bin/$(PROC) $(PROCPPFLAGS) CPP_SUFFIX=cc iname=proctest.pc
    $(ACC) $(ORACLEINCLUDES) -c proctest.cc -o proctest.o
    #####################program (proc test.pc)#########################
    #include<stdlib.h>
    #include<iostream.h>
    #include<sqlca.h>
    #define UNAME_LEN 20
    #define PWD_LEN 20
    EXEC SQL BEGIN DECLARE SECTION;
    VARCHAR username[UNAME_LEN]; // VARCHAR is an ORACLE supplied struct
    varchar password[PWD_LEN]; // varchar can be in lower case also
    EXEC SQL END DECLARE SECTION;
    void sql_error(char *msg);
    int main()
    EXEC SQL WHENEVER SQLERROR DO sql_error("ORACLE error:");
    username.len = (unsigned short)strlen(strcpy((char *)username.arr, "scott"));
    password.len = (unsigned short)strlen(strcpy((char *)password.arr, "tiger"));
    EXEC SQL CONNECT :username IDENTIFIED BY :password;
    cout<<"Connected to oracle \n";
    return(0);
    void sql_error(char *msg)
    EXEC SQL WHENEVER SQLERROR CONTINUE;
    cout << endl << msg << endl;
    cout << sqlca.sqlerrm.sqlerrmc << endl;
    EXEC SQL ROLLBACK RELEASE;
    exit(1);
    ####################################################################

  • How can I use srvctl command line for change "Failover type" and "F method"

    Hi all,
    I am using Oracle One Node (11.2.0.3), and I have a service:
    /u01/11.2.0/grid/bin/srvctl config service -d orcl
    Service name: orcldb
    Service is enabled
    Server pool: orcl
    Cardinality: 1
    Disconnect: false
    Service role: PRIMARY
    Management policy: AUTOMATIC
    DTP transaction: false
    AQ HA notifications: false
    Failover type: NONE
    Failover method: NONE
    TAF failover retries: 0
    TAF failover delay: 0
    Connection Load Balancing Goal: LONG
    Runtime Load Balancing Goal: NONE
    TAF policy specification: BASIC
    Edition:
    Preferred instances: orcl_1
    Available instances:
    I would like to change "Failover type" and "Failover method" to:
    Failover type: SELECT
    Failover method: BASIC
    How can I do that? Is there any graphical tool for it? Or, How can I use srvctl command line for change it?
    Thanks in advance.
    Leonardo.

    user10674190 wrote:
    Hi all,
    I am using Oracle One Node (11.2.0.3), and I have a service:
    /u01/11.2.0/grid/bin/srvctl config service -d orcl
    Service name: orcldb
    Service is enabled
    Server pool: orcl
    Cardinality: 1
    Disconnect: false
    Service role: PRIMARY
    Management policy: AUTOMATIC
    DTP transaction: false
    AQ HA notifications: false
    Failover type: NONE
    Failover method: NONE
    TAF failover retries: 0
    TAF failover delay: 0
    Connection Load Balancing Goal: LONG
    Runtime Load Balancing Goal: NONE
    TAF policy specification: BASIC
    Edition:
    Preferred instances: orcl_1
    Available instances:
    I would like to change "Failover type" and "Failover method" to:
    Failover type: SELECT
    Failover method: BASIC
    How can I do that? Is there any graphical tool for it? Or, How can I use srvctl command line for change it?
    Thanks in advance.
    Leonardo.srvctl modify service -d database_name -s orcldb -q TRUE -m BASIC -P BASIC -e SELECT -z 180 -w 5 -j LONG
    Also see
    11gR2(11.2) RAC TAF Configuration for Admin and Policy Managed Databases [ID 1312749.1]

  • Unable to Launch FMEL via Command Line for Osprey 460e Simulstream Mode

    Subject: Unable to Launch Flash Media Encoder Live v3.2 via Command Line for Windows 2008 for Osprey 460e Simulstream Mode.
    Dear Users,
    Its urgent and I request you to looking into the problem and oblige.
    We are facing problem in command line section of Flash Media Encoder Live v3.2 while using  Osprey 460e Device Capture.
    When we are launching the setup via GUI mode of Adobe Flash Media Encoder Live then its showing fine, However when we are trying to execute the same using the commandline then its throwing the error that the device is in use already.
    Please clarify the error and confirm that there is no errors issues from your FMLE side. We have installed the latest downloadable (stable version) from Osprey Viewcast  website only.
    Regards
    Vibs

    I have solved the error by installing Desktop Experience Feature in Windows 2008
    To resolve this problem, install the Desktop Experience feature of Windows Server 2008. To do this, follow these steps: 
    Click Start, click Administrative Tools, and then double-click Server Manager. 
    In Server Manager, click Add Features under Features Summary. 
    In the Add Features Wizard dialog box, make sure that the Desktop Experience option is selected. 
    Click Next, and then click Install. 
    After the installation process is complete, click Close, and then close Server Manager.
    Note After you install Desktop Experience, you have to restart the computer.

  • I need the proper settings for Acrobate Reader 9.3 to be backward compatable to open PDF 6.0.

    I have a full license for Adobe Acrobat Professional 9. I just got off the phone with Acrobat technical support about once you install Acrobat Reader 9 to read documents online using Internet Explorer and Firefox. That it would make documents that were scanned in with CapturePerfect3.0 and a Cannon document scanner using Adobe Acrobat Professional 6.0 saved in PDF format and stored as images with records stored with Access Database front-end and SQL Server backend. Simple 6.0 PDF documents stored scanned documents in a database. O.K.! The problem is once you upgrade to read newer version of Acrobat PDF documents that our staff must read online, it makes reading saved database 6.0 PDF documents unreadable. Technical support informs me that it is a settings fix in Acrobat Reader 9 but because the Acrobat Reader 9 is a free download that can't tell me how to fix the settings.
    So here I am trying to find out the proper settings in Acrobat Reader 9 to read new Acrobat documents online and old 6.0 Acrobat PDF documents on Windows XP Pro workstations and one Windows 7 workstation of the CEO's assistant. So please help me with the proper setting for Acrobat Reader 9 to work online reading newer PDF documents and still read Acrobat 6.0 documents stored in a database.

    Adobe Reader 9 can open old and new pdf files.

  • Shared Review End Review, Deadline not working in Acrobat Pro 9 for Acrobat Reader 8 reviewers

    I am testing the features of PDF Shared Reviews on a network server using Acrobat Pro 9 with reviewers using Acrobat Reader 8.1. (All are Windows users.) After initiating the review via the Tracker and having no problem getting the reviewers to comment and publish, I select End Review in the Tracker. Acrobat Pro 9 registers this action and shows that the review has ended in the yellow bar at the top of the PDF and in the Tracker. However, all the reviewers using Acrobat Reader 8 can continue to comment, publish their comments, and the comments continue to show up in the PDF posted in the network folder. That PDF file continues to say, when opened in Acrobat Pro 9 by the initiator, that it is closed for reviewing. The comments published after the review has ended continue to show up. This is true minutes, hours, and days after the review has been ended so is not a synch problem.
    I cannot add comments to this PDF in Acrobat Pro 9 because Acroat Pro registers the end of the review. I can open this file in Acrobat Reader 8 on my computer and continue to add comments. This same problem exists after the deadline set initially has passed. Acrobat Reader 8 users are always able to comment and publish comments when the review should have been ended for them.
    How do I get the reviews to end for Acrobat Reader 8 users?
    Thanks.
    Mary-Nell

    Those users will have to upgrade to Reader 9 to get the deadlines working

  • What I need to write plug-in for Acrobat Reader ?

    Hi There,
    I want to write plugin for Acrobat Reader, that's mean I need visual studio or is enough just to have some c compiler ?
    One more things. I find out I can use a javascript code do hide toolbar menu and menu item and I founded some inforation that is not possible use that way to disable context menu on right click mouse button. Is that correct ?
    Best regards,
    grynien

    Look at the documentation:
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/wwhelp/wwhimpl/js/html/wwhel p.htm?&accessible=true
    Look at 'Developing for Adobe Reader' in 'Introduction to SDK'.

  • Cost for Enabling Plug-in for Acrobat Reader

    Hi,
    I read the developer note and noticed if I want to enable my plug-in for Acrobat Reader I need "Visit the Adobe web site and fill out an Adobe Reader Integration Key License Agreement."
    I heard the cost is 100 US dollars per license. I am a bit confuse with it. The cost is $100 for each plug-in no matter how many copies I distributed in company. Or $100 for each computer I want to install my plug-in?

    Hello,
    my question is also related to the integration of our plugin into Acrobat Reader.
    I fulfilled the application form for the Reader Integration Key License Agreement and I sent an email to [email protected] but I received an error that is the email account doesn't exist.
    I didn't manage to find a valid account where I can send the form.
    Thanks in advance for your help.
    Regards.

  • I NEED MULTIPLE SYSTEM LICENSE FOR ACROBAT READER PRO. HOW CAN I BUY. HOW MUCH FOR THAT

    I NEED A MULTIPLE PC LICENSE FOR ACROBAT READER PRO. HOW CAN BUY. HOW MUCH FOR THAT.

    Reader is free. If you want multiple licenses for Acrobat, you have to discuss this with Acrobat. The Adobe Store gives pricing for up to 9 licenses. Volume license require talking to Adobe, not other users.

  • Special Standard printer only for acrobat reader, is this possible? Registry Hack

    In my networking earea are a lot of printers also a big toshiba copying mashine.
    While printing a pdf file to it with an PCL6 printer driver it takes a lot of time to print this.
    When i take a Postscript driver it runs faster ...
    so when my users will print pdf's it is difficult to explain them how to print ... an own standard printer for acrobat reader would solve this problem.
    Does anyone have a solution? is there some registry hack?
    regards 2CV6

    In Windows (don't know if this is the case on Mac) in a corporate environment where you are connected to printers via verbose network paths, you can't see the entire path.  The "printer name" gets truncated.  Since the name of the printer is at the right end of the path, you can't see which printer is which.
    It would be handy if they had a function that allowed you to scroll to the right of the printer list and/or throw up a tool tip that gives the entire path.  I'm surprised this hasn't been flagged as a pretty significant issue.

  • Need DOS Command-line for vgabios

    Hello,
    can anyone post the standard command-line for me to copy and paste into msdos autoexec ? I'm trying to temporary load the vgabios for my geforcefx.

    edit command. C:\edit autoexe.bat
    Now type in the commands you want
    Edited for misleading content

  • Command line for credential manager

    can anyone help me in getting command line for credential manager ... ?
    Thanks,
    VRAGHU

    If there are a lot of them you could go to a command prompt and type:
    cmdkey /list
    Or better yet:  cmdkey /list > del_creds.cmd
    Then edit the file so you are only left with, for example:
        cmdkey /delete:info-services.dev-inside.lni.wa.gov
        cmdkey /delete:info-services.inside.lni.wa.gov
        cmdkey /delete:inside.lni.wa.gov
        cmdkey /delete:lnidaptumtfs08.wads.res
        cmdkey /delete:lniduttumvm05
        cmdkey /delete:lnipstum01.wads.res
        cmdkey /delete:lnipstum02.wads.res
        cmdkey /delete:lnixapolysrm1.wads.res
        cmdkey /delete:ohr.apps-inside.lni.wa.gov
        cmdkey /delete:portal.apps-inside.lni.wa.gov
        cmdkey /delete:portal.dev-inside.lni.wa.gov
        cmdkey /delete:scsd8.unit-test.wads.wa.gov
    then run your del_creds.cmd file and they will all be gone.
    Steven Shippee

  • Command line for DISCOVERER 3.1.37

    I try to found the instructions about the command line for DISCOVERER 3.1.37 (how to activate with the username/password with the address of a workgroup on a file server)
    Where can i find informations about Command line mode and examples ?

    Hi,
    I think you need to upgrade Disco to 4.1.48, I don't think 4.1.37 works properly with Applcations 11.5.8.
    Rod West

Maybe you are looking for