List oppenned pdf documents in reader, close one and reopen on the same page

Hi,
I am working in TeX and that program creates pdf documents for me. What I need when I creating new one and having old one oppened is to close old one, create new one from tex source code and reopen new one. I wish to get some api best .NET method to list all openned PDF documents, to close selected document and remember page it was oppened on. Then I will create a new pdf file (I know how). And then I want to open file on the page the previous file was closed on.
If I dont close the file, I can not create new one. I can close all instances of acroread32 but I want only to close my document and be able to know page which was openned on. I tried SDK but dont know what functions I can look on. I also need free solution, not paid one (not some functions in .NET classes shipped with Acrobat instalation).
Thanks for your reply.

It looks like this:
I want to click on the check box and get the corresponding value for f02_000X (or could I refer to the class name if I gave it a class)
There are several tables with the same format as below so it needs to work out the table id in the reference.
<table id="report_R1641794306363434600" cellspacing="0" cellpadding="0" border="0" summary="">
<tbody>
<tr>
<td></td>
</tr>
<tr>
<th id="BOX"></th>
<th id="Name"> </th>
</tr>
<tr>
<td colspan="11">
<table width="100%" cellspacing="0" cellpadding="1" summary="" style="border-bottom:1px #959562 dotted;">
<tbody>
<tr>
<td valign="top" nowrap="nowrap" style="padding:1px;"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td headers="BOX">
<label class="hideMeButHearMe" for="f01_0001"> </label>
<input id="f01_0001_01" class="boxhop" type="checkbox" onclick="if (this.checked) {apex.jQuery('#f01_0001').val('Y');} else {apex.jQuery('#f01_0001').val('');}" value="Y" name="f01_NOSUBMIT">
<input id="f01_0001" class="boxhop" type="hidden" value="" name="f01">
</td>
<td headers="Name">
Administrator
<input id="f02_0001" type="hidden" value="2072" name="f02">
</td>
</tr>
<tr>
<td colspan="11">
<table width="100%" cellspacing="0" cellpadding="1" summary="" style="border-bottom:1px #959562 dotted;">
</td>
</tr>
<tr>
<td headers="BOX">
<td headers="Name">
Angela Murray
<input id="f02_0002" type="hidden" value="2082" name="f02">
</td>
</tr>
<tr>
</tbody>
</table>

Similar Messages

  • Why my abode reader closes spontaneously and to enlarge the text of some pdfs got it?

    Why my abode reader closes spontaneously and to enlarge the text of some pdfs got it?

    Would you provide more information?
    What is your iOS device model? iPad Air, iPad Mini
    What is the iOS version?
    What is the version of your Adobe Reader?
    Would you also send your PDF document to [email protected] as an email attachment?  We should be able to diagnose the problem using the PDF document on our end.  Thank you!

  • When I try to open a download PDF I get message to install Adobe Reader. I do it and get the same message already installed. I close Safari and reopen but get same message to install Adobe

    When I try to open a download PDF I get message to install Adobe Reader. I do it and get the same message already installed. I close Safari and reopen but get same message to install Adobe

    You don't provide any details, but from the sound of it you are trying to open an online PDF in a browser that does not use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • Adding more than one custom binding to the same page

    Hi guys,
    JHeadstart 11.1.1.3.35
    How can I add two custom bindings to the same page ? I have 2 graphs on the same page (in tabbed regions).
    My FORM_GRAPH template for the first one is
    #macro (CUSTOM_BINDING1)
        <graph IterBinding="ActiveVisitsIterator" id="SubjectsActiveVisitsGraph" xmlns="http://xmlns.oracle.com/adfm/dvt" type="BAR_VERT_STACK">
          <graphDataMap leafOnly="true">
            <series>
              <data>
                <item value="Active"/>
                <item value="Inactive"/>
              </data>
            </series>
            <groups>
              <item value="VisitNo"/>
            </groups>
          </graphDataMap>
        </graph>
    #end
    ${JHS.pageDefGenerator.addBinding($JHS.page,"JhsUsers","#CUSTOM_BINDING1()")}
    <dvt:barGraph id="barGraph1" value="#{bindings.SubjectsActiveVisitsGraph.graphModel}" subType="BAR_VERT_STACK"
                                        threeDEffect="true" animationOnDisplay="AUTO" seriesRolloverBehavior="RB_HIGHLIGHT">
                            <dvt:background>
                              <dvt:specialEffects/>
                            </dvt:background>
                            <dvt:graphPlotArea/>
                            <dvt:seriesSet>
                              <dvt:series/>
                            </dvt:seriesSet>
                            <dvt:o1Axis/>
                            <dvt:y1Axis/>
                            <dvt:legendArea automaticPlacement="AP_NEVER"/>
                            <dvt:graphTitle text="Subject Status"/>
                            <dvt:o1Title text="Visit"/>
                            <dvt:y1Title text="Number of Subjects"/>
                          </dvt:barGraph>and for my second
    #macro (CUSTOM_BINDING2)
        <graph IterBinding="SiteActiveVistsIterator" id="SitesActiveVistsGraph" xmlns="http://xmlns.oracle.com/adfm/dvt" type="BAR_VERT_STACK">
          <graphDataMap leafOnly="true">
            <series>
              <data>
                <item value="Active"/>
                <item value="Inactive"/>
              </data>
            </series>
            <groups>
              <item value="VisitNo"/>
            </groups>
          </graphDataMap>
        </graph>
    #end
    ${JHS.pageDefGenerator.addBinding($JHS.page,"JhsUsers","#CUSTOM_BINDING2()")}
    <dvt:barGraph id="barGraph2" value="#{bindings.SitesActiveVistsGraph.graphModel}" subType="BAR_VERT_STACK"
                                                        threeDEffect="true" animationOnDisplay="AUTO" seriesRolloverBehavior="RB_HIGHLIGHT">
                                            <dvt:background>
                                              <dvt:specialEffects/>
                                            </dvt:background>
                                            <dvt:graphPlotArea/>
                                            <dvt:seriesSet>
                                              <dvt:series/>
                                            </dvt:seriesSet>
                                            <dvt:o1Axis/>
                                            <dvt:y1Axis/>
                                            <dvt:legendArea automaticPlacement="AP_NEVER"/>
                                            <dvt:graphTitle text="Site Summary"/>
                                            <dvt:o1Title text="Visit"/>
                                            <dvt:y1Title text="Number of Subjects"/>
                                          </dvt:barGraph>but only the first binding is being added to the page def ? I tried putting both graph bindings in the first custom binding but on generation I get an error "Error while parsing XML for page definition element JhsUsers: Expected 'EOF'." (although the code in the binding macro is exactly the same as in the pagedef when added manually ?
    How can I add both of these graph bindings ?
    Cheers,
    Brent

    Brent,
    In the statement
    ${JHS.pageDefGenerator.addBinding($JHS.page,"JhsUsers","#CUSTOM_BINDING2()")}
    the second argument should be the id of the binding you want to add. You use twice "JhsUsers" as id for the binding.
    This id should be the same id as used in your XML page snippet, so for the first binding it should be "SubjectsActiveVisitsGraph" and for the second binding it should be "SitesActiveVistsGraph"
    Steven Davelaar,
    Jheadstart Team.

  • My iPad closes apps and returns to the main page

    This has just started in tha last two weeks.  it's really bad in mail when I get half way through a email message to send out the app closes and returns to the main page. It does'nt save a draft at that point either?

    Lots of things can be causing this but I'll cover two of the more frequent causes. Let's start by having you restart your device: hold the power button in the top right until the red slider appears. Slide it to the left and let it power off. When the screen is black, wait approximately 5 seconds, then hold the power button on.
    When the machine boots up, your apps will have closed freeing up lots of memory; alternatively, you can force close apps, by double clicking the Home button and holding your finger on an App until the minus signs appear; click the minus sign. If your apps were quitting due to lack of memory, this will have fixed the issue.
    However, if the issue is still occuring, my next bet would be a failed update (iOS, App, etc). If you have a recent backup, Restore to that backup, otherwise you'll be doing a factory restore (or restoring like new). You can find directions on how to do both below:
    How to Restore from Backup: http://support.apple.com/kb/HT1414
    Reset as New: http://support.apple.com/kb/HT4137
    I wouldn't recommend backing it up at this point as its likely corrupt.

  • When i close firefox and reopen it, the previus web site reopens again

    when i close firefox the web page i was visiting, and i reopen a new session the previous page i was visiting reopens again, i cleared cache, history no hel and reinstalled it no help [lease help me ty .

    Use one of these:
    *Tools > Options > General > Startup: "When Firefox Starts": "Show my home page" "Show a blank page"

  • My iphone 4 doesn´t connect thorugh Wi-Fi, apple replaced my phone for a new one and it has the same problem. I have an ipod and it doesn´t have this problem. Does any one know what to do?? Thanks

    My iphone 4 doesn´t connect through Wi-Fi, Apple replaced my phone for a new one, but the new one  has the same problem. I have an ipod third generation and it doesn´t have this problem. Having compared both working at the same time, the iphone alsways lags behind or doesn´t even connect to the internet via Wi-Fi. Does any one know what to do?? Thanks

    Have you ever checked to see if there is an update for your router? If yes, then power off router. Then on iPhone go into settings and do a reset network settings. Power router back on, and try connecting phone to router.

  • HT201177 My Macbook pro: After sleeping, the screen comes on momentarily then blacks out.  When I close the lid and reopen it the same thing happens.  The screen only does this after waking up from sleeping.  Help, thanks!

    Macbook Pro:
    When I raise the lid after sleeping, the screen comes on momentarily then backs out.  If I close the lid and raise it again, the same thing happens.  It is sometimes necessary to force quit.  Once restarted, there is no problem unless the lid is closed for a short time and the machinge goes to sleep.
    Help! Hesperia fire captain

    Hi ...
    Try Resetting the System Management Controller (SMC)

  • Youtube has a left side [split window] open on the same video for months. I can't close it and it plays the same song over and over again when I open firefox. I've uninstalled and re-installed firefox and checked all settings with no help

    those are all of the details.

    I know the Firefox developers had good reasons for introducing this feature, but they failed to consider their users who are web developers.
    I've installed a web server on my computer to help with web design, and I access the homepage through http://localhost
    However this won't work in offline mode, and (with my dial-up connection and all) it's not practical to always dial in to my ISP just to have Firefox start in online mode, plus I don't need to be *actually/literally* online to access my local web server. And the extra clicks to File -> Work Offline are a pain.
    The best option IMHO would be to provide a pain-free way to disable this setting for advanced users. Emphasis on *pain-free*.
    My 2 cents, for myself and (hopefully) on behalf of the poor, forgotten web designers out there.

  • I added greasemonkey and it works with two of my games but not the third one and these are the same type of games Dragons ofAtlantis on Facebook. Why would it work on two and not the third?

    I have windows 7 and firefox 6.0 greasemonkey I had just installed this program

    1. If you break your post into paragraphs it is much easier to read.
    2. I have no idea what your post is referring to, and how - if at all - it relates to iPhoto.
    3. It's a good idea to re-read what you've posted, and ask yourself how it might look to someone who doesn't know you and doesn't know what's going on with your machine.

  • HT4863 my icloud e-mail stops working suddenly, I have to close the program and reopen for the same thing to happen again.

    Whenever I go to my e-mail, it scrolls down by itself, then it freezes and stops working.  It happens on my ipad and other computers as well.  Also lately I have had trouble receiving e-mails from other senders.
    I also cannot view e-mails for long without restarting the program and I purchase additional storage.
    Can you help me solve these problems??

    Hi RACHEL CHISHOLM,
    Please follow the steps mentioned in the KB article below:
    Doesn't launch after 30 days | Installed as part of a CS6 suite
    Follow the steps when you experience this issue.

  • HT203421 I down loaded Quick Time for windows in My "Windows XP SP3" computer. I got an Icon on the desktop but when I tried to open it I got This; Quick Time failed to initialize Error code #2096. I bought a second one and it did the same thing, I now ha

    I purchased Quick

    Hi kcorney1,
    Thanks for visiting Apple Support Communities.
    You may find the steps in this article helpful for troubleshooting Quicktime:
    Error -2096 message when opening QuickTime for Windows in Compatibility Mode
    http://support.apple.com/kb/TS1875
    All the best,
    Jeremy

  • I just brought an ipod 5 pink on saturday and i listened to music on saturday and sunday. But on monday the headphones only played on my right side. I brought it back and went to bestbuy and got the same pink one just  a new one and it did the same thing.

    what do i do ?

    - Try cleaning out/blowing out the headphone jack. Try inserting/removing the plug a dozen times or so. Almost make sure the plug is fully seated in the jack. Futher, have yu tried another pair of headphones.
    Try the following to rule out a software problem
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup
    - Restore to factory settings/new iPod.
    - Make an appointment at the Genius Bar of an Apple store. Seems you have a bad headphone jack.
    Apple Retail Store - Genius Bar

  • I am experiencing difficulties opening some web-based PDF files on my iPad. I was having the same difficulty opening the same PDFs on my iMac (after I upgrade to Yosemite) but was able to overcome it by adjusting the Adobe Reader plug-in settings.

    I am experiencing difficulty opening some web-based PDF documents on my iPad. I had exactly the same difficulty on my iMac (after I upgraded to Yosemite) but was able to overcome it by adjusting the Adobe Reader plug-in security settings in Safari (in OSX).
    Unfortunately there does not seem to be a way to similarity adjust the security settings in Safari in iOS 8.
    The message I get when I attempt to open the PDF (on my iPad) is as follows:
                "To view the full contents of this document you need a later version of PDF viewer. You can upgrade to the latest version of Adobe Reader from ..."
    Needless to say this is unhelpful for two reasons:
    - I have the very latest version of Adobe Reader; and
    - in iOS Adobe Reader is not a plug-in and plays absolutely no role in opening web-based PDF documents.      
    If anyone has experienced this difficulty and has been able to overcome it I would be most appreciative to hear of you solution.
    Cheers   
    AlbertaRic

    Did you check what I would consider the first place to look:
    * http://kb.mozillazine.org/Problematic_extensions
    If the site is still down (at least 12 hours) when you read this try [http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Problematic_extensions Google's cache]
    Link or url would make it easier to see which page you tried rather than "your online solution for ...".
    * http://kb.mozillazine.org/Firefox_hangs ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_hangs cached version])
    * http://kb.mozillazine.org/Firefox_crashes ([http://webcache.googleusercontent.com/search?q=cache:http%3A//kb.mozillazine.org/Firefox_crashes cached version])
    * [https://support.mozilla.com/kb/Firefox%20hangs#os=mac&amp;browser=fx4 Firefox hangs | Troubleshooting | Firefox Help]

  • How to insert into 2 tables from the same page (with one button  link)

    Hi,
    I have the following 2 tables....
    Employees
    emp_id number not null
    name varchar2(30) not null
    email varchar2(50)
    hire_date date
    dept_id number
    PK = emp_id
    FK = dept_id
    Notes
    note_id number not null
    added_on date not null
    added_by varchar2(30) not null
    note varchar2(4000)
    emp_id number not null
    PK = note_id
    FK = emp_id
    I want to do an insert into both tables via the application and also via the same page (with one button link). I have made a form to add an employee with an add button - adding an employee is no problem.
    Now, on the same page, I have added a html text area in another region, where the user can write a note. But how do I get the note to insert into the Notes table when the user clicks the add button?
    In other words, when the user clicks 'add', the employee information should be inserted into the Employees table and the note should be inserted into the Notes table.
    How do I go about doing this?
    Thanks.

    Hi,
    These are my After Submit Processes...
    After Submit
    30     Process Row of NOTES     Automatic Row Processing (DML)     Unconditional
    30     Process Row of EMPLOYEES     Automatic Row Processing (DML)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    40     reset page     Clear Cache for all Items on Pages (PageID,PageID,PageID)     Unconditional
    50     Insert into Tables     PL/SQL anonymous block     Conditional
    My pl/sql code is the same as posted earlier.
    Upon inserting data into the forms and clicking the add button, I get this error...
    ORA-06550: line 1, column 102: PL/SQL: ORA-00904: "NOTES": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
         Error      Unable to process row of table EMPLOYEES.
    Is there something wrong with the pl/sql code or is it something else?

Maybe you are looking for

  • Xml file not getting loaded locally...

    Hi, I have created a project and it uses an xml file which I have used in assets folder within the src of the project(The project was created in D:\C Drive\Documents\SAP UX\go_green\wasl_DB\bin-debug). The url path which I have used in HTTPService is

  • "Data" tab no longer working

    Version 1.5.0.53 Build MAIN-53.58, running on Mac OS X 10.5.2 All of a sudden, the "Data" tab for editing table data is no longer working. Clicking on it does nothing at all - no change in the icons, no apparent network activity - its as if you were

  • ITunes logo only showing on start up

    I'm trying to turn on my iPad mini and all I get is the Apple logo and then the logo for iTunes. Nothing responds. Is my only option to restore my iPad?

  • Want to create folders on iPod.

    I want to create folders on iPod.  Have read comments from 2006, but not the answer.  Maybe if I explain:  I want to have a folder called Chopin and include individual playlists for different artists.  How do I do it?  Thanks

  • Handling digitally signed and encrypted emails

    Hi all, Is it possible to handle digitally signed emails with LiveCycle ES? And what about encrypted emails? Sincerely Kim Christensen