Can you add annotations using an AcroAVDoc when opened using OpenInWindowEx?

I am writing a C# application in which users will need to annotate documents. I would prefer to use Acrobat's standard annotation tools (and toolbar). I am currently using the command OpenInWindowEx(filename, handle, AVOpenParams.AV_EXTERNAL_VIEW, ...) (of an AcroAVDoc object) to open a PDF in a window that my application can control. Unfortunately I cannot seem to get the annotation tools to display. In fact, the whole thing appears to be read only (with the exception of e-sigs). When using just the Open command of an AcroAVDoc the file opens in Acrobat and behaves as expected, but then I cannot resize the window or move it with the other windows of the application.
Thanks for reading,
-Dump987

All,
I moved the project from .NET 3 to .NET 4 to take advantage of dynamic objects, and hoped to be able to use the same type of syntax as one can use in VB.NET to work with the JSObject. Unfortunately, no matter what I try, I get the exception "Value does not fall within the expected range." Can anyone advise on whether we can use dynamic objects?
Example:
AcroPDDoc pddoc = new AcroPDDoc();
pddoc.Open("C:\\test.pdf");
dynamic jso = pddoc.GetJSObject();
jso.Collab.showAnnotToolsWhenNoCollab = true; // or jso.console.Show(); it doesn't matter anything seems to throw the exception
Thanks,
-Dump987

Similar Messages

  • How can you add comments to a text file while using a Digital Waveform vi?

    Hi. I'm very new to Labview. I have a txt file of 1's and 0's wired to a "read from text file" which is then wired to a "spreadsheet string to digital.vi" ("digital waveform") and lastly to a graph. I want to add notes to the txt file that will not be read in the digital waveform. i.e. Like how you use // or /* in a C++ program to show that you are writing a comment and not code.
    Labview version: 8.5
    Thank you

    You will just need in your text file a line at a time.  Search the string for the characters // or /*.  If it finds them, then loop back and read another line.  If it doesn't find them, you must have a good line of data and you can pass on to the next part of your cod.

  • Can you add a new managed bean when customizing taskflows?

    Hi,
    I see post on how to customize taskflows and most of the customization involves rendering changes such as showing/hiding parts of the page..
    But I was thinking is it possible to create your own managed bean in Customization Role of JDeveloper?
    I notice that when I right click some package, the New option is disabled by default? Does this mean that customization is limited to changing
    only the UI/JSFF file? The documentation does not mention about this or it maybe that I could not find it.
    What I would like is that, the new managed bean I define in my Customization Role will drive the UI.
    Anybody has done customization at this level? Would like to know your thoughts please.
    Is this possible or should I point my thinking in the other directions?
    Thanks.
    This is a Webcenter Portal Application by the way and I am looking into customizing an existing taskflow thru MDS means.
    Webcenter 11G PS5

    You cannot add a new managed bean via customization. Instead, these may be deployed as ADF Library jars within a shared library or as part of the Portal war.
    Once a managed bean has been added as above, then it can be referenced within a taskflow customization. For e.g. you can add a new button with the action set to a method in the managed bean.

  • How can you add a new connection to SAP GUI using a domain logon script?

    We have two new SAP connections and over 1100 computers to add it to.  The computers are on a domain, and using logon scripts. Can someone help me create a script to add connections to the SAP Logon.

    Hello,
    please make the neccessary entries in your own SAPLOGON...
    and then deploy the file  SAPLOGON.ini  from your client to all other client
    via the logon script...
    Or, and that is what we ( SAP ) recommend, you can use the SAP FRONTEND ÌNSTALLATION SERVER.
    Best regards, Sven

  • Can you remove items from the toolbar when opening a pdf in a browser?

    I know you can turn off the toolbar with open parameters, but we would like to only display the zoom controls on the toolbar.  Can I do this with an FDF file or some other way?

    Hi,
    You mentioned that "JavaScript in the PDF can hide toolbar buttons."
    According to the Javascript docs for Acrobat 7 the App.HideToolbarButton function only runs at AppInit.  Which means that I would have to have the javascript in a file.  How can I do that from within the document?  Is there another way to to do set this from our web application?
    Rob

  • When using the "submit by email" feature can you add 2 emails?

    When using the "submit by email" feature can you add 2 emails?

    Yes. Seperate them with semicolon (;) just like you would in a normal email client.
    Kyle

  • How can you add a where clause using "OR" with applied ViewCriteria?

    [JDeveloper 10.1.3 SU4]
    [JHeadstart 10.1.3 build 78]
    I am using JHeadstart, but have a question probably more in the ADF area. On the JHeadstart forum I asked:
    "I am overriding JhsApplicationModule's advancedSearch in order to be able to search in childtables. I created transient attributes, display those in advanced search and in the overridden method I check if any of these are filled by the user and create a where clause like 'EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>)'. I add this whereclause using ViewObject.setWhereClause.
    So far so good and it works. However, if the user selects 'Result matches any criteria', combining setWhereClause and the normal advancedSearch QueryByExample implementation using ViewCriteriaRow do not provide the desired result, since the ViewCriteria and the setWhereClause are AND-ed together, which is fine if the user selects the (default) "Results match all criteria" (everything is AND-ed) but not the "Result matches any criteria", since then every criterium is OR-ed together, except for the setwhereclause criteria and the set of ViewCriteriaRows, they are AND-ed.
    I looked if I could specify that a WhereClause will be OR-ed to existing applied ViewCriteria, but no luck. Do I have to rewrite also advancedSearch's ViewCriteria implementation and write an entire setWhereClause implementation to be able to "OR" every criterium? Or any other suggestions? Can I look at the entire Where clause and rewrite it (after applyCriteria and setWhereClause are called on the VO)?
    Toine"
    Sandra Muller (JHeadstart Team) told me today: "This sounds like a JDeveloper/ADF issue that is not related to JHeadstart. The question is: how can you add a where clause using "OR" if there are already one or more ViewCriteria applied?
    To simplify the test case, you could create a simple ADF BC test client class in a test Model project without JHeadstart (in the test class, use bc4jclient + Ctrl-Enter), in which you first apply a few ViewCriteriaRows to a View Object and also add a where clause.
    Can you please log a TAR at MetaLink ( http://metalink.oracle.com/ ), or ask this question at the JDeveloper forum at http://otn.oracle.com/discussionforums/jdev.html ? (This what I am doing now ;-))
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting"
    Anyone knowing the answer or am I asking for an enhancement?
    Toine

    Hi,
    Can you SET your whereclause as follows ?
    ('Y' = <isAnd>
    and EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> AND <another column in childtable> LIKE '<value supplied by user>))
    OR ('N' = <isAnd>
    AND EXISTS (SELECT 1 FROM <childtable> WHERE <column in childtable> = <column in EO's table> OR <another column in childtable> LIKE '<value supplied by user>))
    )

  • Can you share your keyboard and mouse when using S...

    can you share your keyboard and mouse when using Skype Screen share?
    I want to give a remote user access to a application on my computer.  Is this posisable with Skype?
    Can you share just one application on yourscreen and not the complete screen?

    you can share both your entire screen, or just a specific window of program in your computer.  it is not possible to give someone a remote access to your computer through skype, and it is also not possible to share your mouse and keyboard.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Can you add an external DVR if your using a Verizon box without the DVR built in.

    Can you add an external DVR if your using a Verizon box without the DVR built in?
    Or you can only add an external DVR ir you Verizon box has the DVR build in?
    Thanks

    You can connect an external DVR to the verizon equipment, but it will be limited as far as what it can do. You will not have the full functionality as you would by using a Verizon DVR. To get more information as far as what will and will not work, please contact the tech support group of the external DVR company.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • TS3212 how can you remove the pop-up blocker when dowload itunes using google chrome

    how can you remove the pop-up blocker when dowload itunes using google chrome ??

    Set that domain as '''Allowed'''. <br />
    https://support.mozilla.com/en-US/kb/Pop-up%20blocker#w_pop-up-blocker-settings

  • Can you turn off the charging feature when using accessories?

    Can you turn off the charging feature when using accessories with the iPad?

    You cannot overcharge the battery when using the power adapter. Once the battery is fully charged, the iPad will no longer continue to charge if it is still connected. I leave my iPad on the power adapter for hours on end - on weekends when I am not at work.
    iPad - Charging the Battry
    http://support.apple.com/kb/HT4060
    About the iPad Battery
    http://www.apple.com/batteries/ipad.html
    These are both worthwhile reading for concerns about the battery and how to properly maintain it.
    I know nothing about external speakers with the iPad since I do not use them - but If the speaker is with a dock of some sort that charges the iPad - you should have no worries. If it is a dock that charges the iPad - I know of no way to turn off the charging feature, but it will not shorten the life of the battery anyway as long as the battery is properly maintained and cared for.
    Message was edited by: Demo

  • Can you add multiple soundtracks to a Keynote show?

    I know you can add one but can you add several? How?

    Yes it is but I hit a glitch, they tell me to use the QuickTime inspector to create a sound for one slide only. Once you click the QuickTime icon the second command is " Click the movie or sound object to select it" I am assuming they are telling me to select the sound file, and drag it into the audio box in the inspector,,...when I go back to the QuickTime icon the controls are still grey,..what am I doing wrong,..the wording of these things leaves a lot to be desired,....if you try to select it while in the QuickTime filed the field dissappears,...confusing....

  • Can you add the entire content of your desktop to the allowable locations in flash player?

    can you add the entire content of desktop to the allowable locations in flash player?  when i click 'add' to allowable locations and type in file:///C:/Documents and Settings under website (i know it's not the website but where else would it be added) it doesn't show up in the overall list of allowable 'sites'.

    Hi radwh,
    Are you talking about trying to add your desktop to Flash Player's trusted locations? If so, you use the "Advanced" tab on the Local Settings Manager to designate folders and files as trusted. (Full path is Advanced->Developer Tools->Trusted Location Settings.) Here's a link to the documentation for that: http://help.adobe.com/en_US/FlashPlayer/LSM/WS6aa5ec234ff3f285139dc56112e3786b68c-7ff0.htm l .
    Hope this helps, and get back to me with further details if this is not what you were asking.
    Thanks,
    KALTechWriter

  • How can you add an image in Mail without being an attachment?

    How can you add an image in Mail without being an attachment?
    In otherwords I'd like to put my logo in the email not as an attachment but as an image.
    Is there a simpel solution to this problem?

    PBN1 wrote:
    How can you add an image in Mail without being an attachment?
    You don't.
    It's not possible. The e-mail protocol is designed for text; anything else has to go as an attachment.
    Different mail clients (such as Mail.app, the mail client bundled with Mac OS X) may have different ways of handling such attachments, but they are still attachments. Each mail client has its own rules and methods, so one may display a picture as if it were in the body of the message, but another client may do something completely different.
    A way of faking it is to format your message in HTML (which is a kind of text). The image is hosted on a remote server, not added to the message; instead, you include a link to it in the body of the message, as you would when building a web page. (This is also what the two tips helpfully provided by X423424X do, except that the link to the image is added in the signature, rather than the body of the message.) What exactly happens to it is, again, at the discretion of the mail client. In my case, for instance, displaying images in HTML messages is turned off, and will stay resolutely off.

  • Can you get an iphone 5 at target that uses AT&T or Verizon network and use the Straight Talk plan from Walmart?

    Can you get an iphone 5 at target that uses AT&T or Verizon network and use the Straight Talk plan from Walmart? I don't have AT&T or Verizon network and I don't want to get them but I was just wondering if you can get the iphone 5 that is at target and use it for the straight talk plan. I will be getting the straight talk plan but I would like to do some research on the iphone 5 first for straight talk. At walmart the phone is $544.99 and I think it will be a lot cheaper to buy it at target.
    Thank You!

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

Maybe you are looking for

  • Concerns w/ MSI fx5600XT 256 Card

    I am looking for a video card to go with my    New MSI kt6 deltaLSR mobo w/ 2500 barton chip I have 1 GIG of samsung  (512x2) PC3200 400MHz Dual Channel DDR sdram    waiting for the Mobo to arrive   I have 2 concerns about what was a soon to be purch

  • How can I create a VM in Brazilian Data Center

    I am working on a Proof of Concept to use Cloud Services in Latin America. What I am trying to do is setup an FTP Site in the Azure Brazilian Data Center. So how can I create a VM in the Brazilian Data Center- I do not see a way to do this through th

  • How to find ount where a library symbol is used

    Hello Please be patient with me because I'm not very familiar with flash. I would like to know if there is a way to find out where is a symbol used into a Flash document. If Symbol A is used by two other symbols (say B and C) is there a way to query

  • Snail download speed from Digital River, now download locked

    I need urgent help with download of my Adobe purchase (Order number: 25382727724)! Only a few days ago, I purchased Adobe CS6 Master Collection from Digital River. However, I've had a painful downloading experience. Oftentimes, the shown downloading

  • Again there is a glitch in the time change here is my observation.

    Have two iPhone (3G and 4S, AT&T carrier) correctly changed time when it should have then around 4:29 am (Cupertino time) it changed ahead an hour.  I think when it changed from 4:29 to 4:30am it changed from 4:29 to 5:30am.  It was corrected by turn