Can some one instruct on how to use SetRotate?

I'm having to code in VB6 and need to know how to use the SetRotate command programmatically to set the view of the PDF to a different angle. I'm using AcroPDF.dll control in a form and would like the user to be able to change the angle of the PDF.
According to the API reference, you use AcroPDPage.SetRotate but some how I need to tell it which page or control to apply it to and that what I don't understand.
Can anyone help a new programmer make the correct calls to SetRotate in VB6?
Thanks.

Try getting a page object using PDDoc.AcquirePage first, then using the PDPage.SetRotate method, but note that this would not work with Reader. This method rotates a page, as opposed to the current view.
I think the only way you can rotate the view with IAC is to use the JSO to execute the corresponding menu item, but I don't think you can get the current rotation, so this wouldn't be reliable and I'm not sure if it would work.

Similar Messages

  • Please please can some one tell me how do you charge ur ipad with ur laptop. it doesn't chage wen I put use the wire. only charges when I plug the socket in.

    please please can some one tell me how do you charge ur ipad with ur laptop. it doesn't chage wen I put use the wire. only charges when I plug the socket in. Iv never used an ipad b4 so don't really know much. Hope some one knowz.

    The quickest way (and really the only way) to charge your iPad is with the included 10W or 12W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (2.5W, most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    How to Save and Prolong the battery life of your new ipad
    https://discussions.apple.com/thread/4480944?tstart=0
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    To Extend a Device’s Battery Life, Get to Know It Better
    http://tinyurl.com/b67c7xz
    iPad Battery Replacement
    http://www.apple.com/batteries/replacements.html
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • HT1338 i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created.

    i have apps to be updated but when i try to update them a message pops out saying "You have updates for other accounts, please sigh in with the other id". Can some one help me how can i still update the same with the new apple id ive created. As i dont have the access to the earlier id anymore.

    You cannot. The apps are assigned to that Apple ID and there is nothing you can do to change that. You could choose to download them again with the new Apple ID, any paid apps will need to be purchased again.
    Hope that helps.

  • I am switchning from iphone 3gs to iphone 4. can some one guide me how to transfer all my data to iphone 4?

    i am switching from iphone 3gs to iphone 4. can some one guide me how to transfer all my data to iphone 4?
    i have a back up in my itunes account .can anyone suggest please ????

    http://support.apple.com/kb/ht2109

  • Can any one tell me how to use EXISTS clause inplace of IN operator.

    Hi All,
    Can any one tell me how to use EXISTS clause AND (JC.EMPL_ID, JC.EMPL_RCD) inplace of IN operator.
    SELECT COUNT (1)
    FROM SYSADM.OHR_PERS_CURR PC
    , SYSADM.OHR_JOB_CURR JC
    WHERE PC.EMPL_ID = JC.EMPL_ID
    AND (JC.EMPL_ID, JC.EMPL_RCD) in (
    SELECT HS.EMPL_ID, HS.EMPL_RCD
    FROM SYSADM.HU_SCRTY_JOB HS, ODSHR.OHR_SCRTY_USER_CFG OS
    WHERE HS.HU_SCRTY_CFG_ID = OS.HU_SCRTY_CFG_ID
    AND OS.DB_LOGIN = USER)
    Thank you.

    SELECT COUNT (1)
    FROM SYSADM.OHR_PERS_CURR PC
    , SYSADM.OHR_JOB_CURR JC
    WHERE PC.EMPL_ID = JC.EMPL_ID
    AND EXISTS (
    SELECT null
    FROM SYSADM.HU_SCRTY_JOB HS, ODSHR.OHR_SCRTY_USER_CFG OS
    WHERE HS.HU_SCRTY_CFG_ID = OS.HU_SCRTY_CFG_ID
    AND OS.DB_LOGIN = USER
    AND HS.EMPL_ID = JS.EMPL_ID AND HS.EMPL_RCD = JC.EMPL_RCD)
    But why ?
    Rgds.

  • Can any one tell me how to use Image Prompt

    Hi
    Can any one tell me how to use Image Prompt in Answers?
    Thanks
    Rahman

    Had a look at this already?
    http://download.oracle.com/docs/cd/E12103_01/books/AnyUser/AboutPrompts.html
    Cheers,
    C.

  • I got error 3295 when doing software update to 4.3.4 on my iphone4.. can some one tell me how skip this error?? I'm new to apple products..!?

    I got error 3295 when doing software update to 4.3.4 on my iphone4.. can some one tell me how skip this error?? I'm new to apple products..!

    anyone????

  • Can any one suggest me how to use drawPixels method for 40 series devices

    Hello!
    I am using drawPixels method of DirectGraphics class the code I have written is :-
    Image offscreen=DirectUtils.createImage(width,height,0x00000000);// width and heights are integer value
    public final int MODEL=DirectGraphics.TYPE_INT_8888_ARGB ;
    Graphics offgra = offscreen.getGraphics();
    DirectGraphics directgraphics = DirectUtils.getDirectGraphics(offgra);
    directgraphics.drawPixels(imgData,false,0,width,0,0,width,height,0,MODEL); // imgData is a int array(int imgData[]) which contains required pixels of image.
    The above code is working fine with NOKIA 60 series device but when i use it with NOKIA 40 series device it gives java.lang.IllegalArgumentException.
    same time if i use :-
    directgraphics.drawPixels(imgData,false,0,width,0,0,width,height,0,DirectGraphics .TYPE_USHORT_4444_ARGB ) ;
    // imgData is a short array(short imgData[]) which contains required pixels of image. i have used different formet here.
    it works fine with 40 series device,
    can any one suggest me how to use drawPixels method for 40 series devices with format
    DirectGraphics .TYPE_INT_8888_ARGB .

    If Remote wipe is activated it can't be undone. And Once the Wipe is done, the device can nö longer be tracked.
    Sorry.

  • God morning can some  one tell me how to delete app from the iphone4?

    cAN SOME ONE TELL ME HOW TO DELETE APP FORM THE IPHONE4??

    If it is an App you have Downloaded and there is no X when it Wiggles...
    Perhaps this Assistant can Help you:
    http://www.apple.com/support/iphone/assistant/application/

  • Please can some one tell me how I can remove an ex boyfriends account from my iPad ? I want it update my updates but his email address always comes up and not mine

    Please can some one tell me how I can remove an ex boyfriends account from my iPad ? I want it update my updates but his email address always comes up and not mine

    Press and hold any of the apps on your iPad's homescreen and after a couple of seconds or so they should start to shake. Then press the 'x' in the top left corner to delete the ones that you don't want, and when you've finished deleting press the home button so as to stop the shaking. If you don't get the 'x' on any of the apps that you've downloaded then check that Settings > General > Restrictions > Deleting Apps isn't set 'off'.
    Note that deleting an app will delete all of its content as well

  • Can any one tell me how to use the BER in RF communication module

    I want to analyse the BER for digital modulation system. IN RF modulation tool kit i found the BER vi . But I didn't understand how to use it. I searched in the help, but it is of no use can any tell me how to use that under user defined funtion.

    SELECT COUNT (1)
    FROM SYSADM.OHR_PERS_CURR PC
    , SYSADM.OHR_JOB_CURR JC
    WHERE PC.EMPL_ID = JC.EMPL_ID
    AND EXISTS (
    SELECT null
    FROM SYSADM.HU_SCRTY_JOB HS, ODSHR.OHR_SCRTY_USER_CFG OS
    WHERE HS.HU_SCRTY_CFG_ID = OS.HU_SCRTY_CFG_ID
    AND OS.DB_LOGIN = USER
    AND HS.EMPL_ID = JS.EMPL_ID AND HS.EMPL_RCD = JC.EMPL_RCD)
    But why ?
    Rgds.

  • Can some one tell me how to get this imessage (i think thats what it is they are in blue) off my flippin phone because they are going to other ppl as well as ppl intended and i keep recieving msgs from randoms grrr please help

    i recently went from a iphone 3 to a 4 and when i send messages they are going to other ppl as well as the ppl they are intended for this did happen once with the iphone 3 but now its all the time i have been in settings but it's not high lighted so dont know how to get the **** thing off so i can just send normal msgs, please advise 

    i didnt have any on but i disabled it then enabled lol dunno how but i have done it i think thanks for your help there is tooooo many settings on the phone for me i was ok with the 3GS just flicking through settings again and my face time as dissapeared lol any ideas

  • Can some one  please explain how they do this flicker effect.

    Random video I found with the effect at around 0:22 or so they get the video to flicker with the snare roll. Can someone explain the easiest way to achieve this.
    Thanks,
    JBird123
    http://www.youtube.com/watch?v=AvTt3RQ_Ftk

    Put two clips on two tracks. Apply the blink filter to the clip on the top track, one frame on, one frame off.

  • When I open my safari it will no longer go directly to my yahoo home page, says..Safari cannot open page because too many redirects occurred,  Can some one tell me how to fix this, I have tried bookmark but won't open from there.

    when I open my safari it will no longer go directly to my yahoo home page, says.. Safari cannot open page because too many redirects accured, how do I fix this.

    Clear the cache in Safari and have another try
    Cheers!

  • How can some one, hearing my call- receiving?

    I have a central phone box in my office, and two phone (panasonic secretory) phones, in my office. I'm almost sure that someones can hear my voice in the office, or hearing phone calls, as voicemail, or email, or sms,... I don't know. As i have apple p.c, and Iphone, and Ipad one, and Ipad Air, so my everything is Apple, and Macintouch system, and earlier I used LAN at my office to connect these all, plus my Printer including Scanner and Fax, plus one Camera for Security conected to a DVR for recording, and a 38 inches LED connected to camera too, so at the moment I feel, and sure someones are listening or even may be watching me at the office, is there anyone who could help me, or suggesting me to do something acording my problem? I really apreciate.

    martyjones wrote:
     i have got a new playbook and the software is os 2.1.01 
    Are you sure that's the version?
    martyjones wrote:
    Hi all can some one tell my how I get android apps on my playbook 
    Read here: How To Sideload Android Apps On The BlackBerry PlayBook OS 2.0
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • Can someone please help with my Galaxy S3

    I have my phone set up to read texts when they are received. I think this is because I have 'driving mode' turned on. I like this feature very much. My problem is, with driving mode turned on every time I get a call or text or simply turn on my scree

  • Display a calendar in javascript!!!

    I have a textbox and button placed next to each other. On click of the button I need to open a calendar for the user to select the date. The calendar should open as a frame next to the button inside the same window as the textbox and the button. Plea

  • Delete payment Information

    My membership has been canceled due to my will. But you are still trying to charge me. How can I delete my payment information so there will be no such thing?

  • T.Code for cash book register in sap FICO.

    Hi Can anyone give the transactions code for taking the cash book register in sap FICO. Thanks in advance for all help...

  • What is the easiest way to ensure correct permissions on multiple servers for folder targets (2008r2) DFS-R

    I have 5 sites to manage and need to create replicated folders using a domain DFS on at least one server on each site. (2008R2) My aim is to work out the most efficient (i.e. least work) of creating shares on each server and ensuring that permissions