How do I restart forcefully while one program I've downloaded online (PDFpen) can't be closed neither removed?!!

How do I restart forcefully while one program I've downloaded online (PDFpen) can't be closed neither removed?!!

Hold down the power button until the screen goes black if it's really necessary.
In your case, you can force quit.
When an app won't quit as it should, click Force Quit from your Apple  drop down menu or press Option + Command + Esc.
Select the app then click Force Quit.
That way it's not necessary to shut down your Mac.

Similar Messages

  • How to copy pf-status from one program to another program

    Hi Gurus,
    Can any one tell me the procedure how to  copy pf-status of one program to another program .if i want to copy pf-status which is in production server to development server how can i do this.pls help me out.
    Regards.

    Hi,
    GO TO  SE41,
    Select Status,
    In from u can give  ur old pgm and staus name
    In To u can ur new one .
    Save and activate.
    Regards,
    S.nehru.

  • I own the Master Collection CS6, but am missing Acrobat ... how do I re-install this one program?

    I own the Master Collection CS6, but am missing Acrobat ... how do I re-install this one program?

    using your master collection installation files, start setup.  you will be given the option to install only acrobat after entering your serial number.

  • How to access a variable from one program to another (independent)

    Hi,
    My requirement is to use a variable(value) from one program(prog1) to another (prog2). how is it possible.
    Regards
    Arani Bhaskar

    Go for memory id .
    passing on values from one program to another program
    Program1
    EXPORT (variable) TO MEMORY ID 'LOC'.
    Program2
    IMPORT (variable) FROM MEMORY ID 'LOC'.
    LOC is the address , for more press f1 on export in abap editor.

  • How to improve the performance of one program in one select query

    Hi,
    I am facing performance issue in one program. I have given some part of the code of the program.
    it is taking much time below select query. How to improve the performance.
    Quick response is highly appreciated.
    Program code
    DATA: BEGIN OF t_dels_tvpod OCCURS 100,
    vbeln LIKE tvpod-vbeln,
    posnr LIKE tvpod-posnr,
    lfimg_diff LIKE tvpod-lfimg_diff,
    calcu LIKE tvpod-calcu,
    podmg LIKE tvpod-podmg,
    uecha LIKE lips-uecha,
    pstyv LIKE lips-pstyv,
    xchar LIKE lips-xchar,
    grund LIKE tvpod-grund,
    END OF t_dels_tvpod,
    DATA: l_tabix LIKE sy-tabix,
    lt_dels_tvpod LIKE t_dels_tvpod OCCURS 10 WITH HEADER LINE,
    ls_dels_tvpod LIKE t_dels_tvpod.
    SELECT vbeln INTO TABLE lt_dels_tvpod FROM likp
    FOR ALL ENTRIES IN t_dels_tvpod
    WHERE vbeln = t_dels_tvpod-vbeln
    AND erdat IN s_erdat
    AND bldat IN s_bldat
    AND podat IN s_podat
    AND ernam IN s_ernam
    AND kunnr IN s_kunnr
    AND vkorg IN s_vkorg
    AND vstel IN s_vstel
    AND lfart NOT IN r_del_types_exclude.
    Waiting for quick response.
    Best regards,
    BDP

    Bansidhar,
    1) You need to add a check to make sure that internal table t_dels_tvpod (used in the FOR ALL ENTRIES clause) is not blank. If it is blank skip the SELECt statement.
    2)  Check the performance with and without clause 'AND lfart NOT IN r_del_types_exclude'. Sometimes NOT causes the select statement to not use the index. Instead of 'lfart NOT IN r_del_types_exclude' use 'lfart IN r_del_types_exclude' and build r_del_types_exclude by using r_del_types_exclude-sign = 'E' instead of 'I'.
    3) Make sure that the table used in the FOR ALL ENTRIES clause has unique delivery numbers.
    Try doing something like this.
    TYPES: BEGIN OF ty_del_types_exclude,
             sign(1)   TYPE c,
             option(2) TYPE c,
             low       TYPE likp-lfart,
             high      TYPE likp-lfart,
           END OF ty_del_types_exclude.
    DATA: w_del_types_exclude TYPE          ty_del_types_exclude,
          t_del_types_exclude TYPE TABLE OF ty_del_types_exclude,
          t_dels_tvpod_tmp    LIKE TABLE OF t_dels_tvpod        .
    IF NOT t_dels_tvpod[] IS INITIAL.
    * Assuming that I would like to exclude delivery types 'LP' and 'LPP'
      CLEAR w_del_types_exclude.
      REFRESH t_del_types_exclude.
      w_del_types_exclude-sign = 'E'.
      w_del_types_exclude-option = 'EQ'.
      w_del_types_exclude-low = 'LP'.
      APPEND w_del_types_exclude TO t_del_types_exclude.
      w_del_types_exclude-low = 'LPP'.
      APPEND w_del_types_exclude TO t_del_types_exclude.
      t_dels_tvpod_tmp[] = t_dels_tvpod[].
      SORT t_dels_tvpod_tmp BY vbeln.
      DELETE ADJACENT DUPLICATES FROM t_dels_tvpod_tmp
        COMPARING
          vbeln.
      SELECT vbeln
        FROM likp
        INTO TABLE lt_dels_tvpod
        FOR ALL ENTRIES IN t_dels_tvpod_tmp
        WHERE vbeln EQ t_dels_tvpod_tmp-vbeln
        AND erdat IN s_erdat
        AND bldat IN s_bldat
        AND podat IN s_podat
        AND ernam IN s_ernam
        AND kunnr IN s_kunnr
        AND vkorg IN s_vkorg
        AND vstel IN s_vstel
        AND lfart IN t_del_types_exclude.
    ENDIF.

  • SAPScript: How to print mutiful forms in one program?

    Dears,
    I want to print invoice in my program, And one invoice number should print one form.
    My question is : if there is a internal table contains 10 different invoice number, and I want to print 10
    forms. Is that means, I should use FM 'OPEN_FORM' 10 times?       
    If do, I would have to fill the popup dialogue window 10 times.
    Anybody who have good ideas about this problem?     Thank a lot.
    Sincerely yours,
    Julie

    I suppose you want to print several sapscripts in one spool
    In that case you need to use START_FORM END_FORM
    It would be something like this
    OPEN_FORM
    Loop at invoices.
    START_FORM
    ENDFORM
    endloop.
    CLOSE_FORM

  • How to put two arrays in one program?

    And also I am comfused by "use at least 1 additional method doing a well-defined task".What actually ask me to do ?
    Cheers.

    public class TwoArrays {
      int[] oneArray;
      String[] anotherArray;
    use at least 1 additional method doing a well-defined taskNo idea. It's your homework, dude. I was given the requirement "find out how much of it's already been done" yesterday. Any idea what that meant?

  • How to use java api while java programming especially using javase and java swing?

    i need help for java api for undo, redo, htmleditorkit,editorkit.
    in my project i have to use java swing for desktop application but, i need help for how to implement and how to retrieve java api.
    please reply with example or code..

    i need help for java api for undo, redo, htmleditorkit,editorkit.
    in my project i have to use java swing for desktop application but, i need help for how to implement and how to retrieve java api.
    please reply with example or code..
    You find examples and code by searching the internet, not by using forums.
    Start with The Java Tutorials - it has trails for the bulk of the Java functionality.
    See the trail 'How to Write an Undoable Edit Listener'
    http://docs.oracle.com/javase/tutorial/uiswing/events/undoableeditlistener.html
    You learn by DOING - not by reading. Actually DO the tutorial example and try to understand WHAT it does and HOW it does it.
    Then search for other tutorial trails that are of interest.

  • If you have 2 apple ids, how do you sign out of one and into the other so you can update the app that was purchased in the other account.  thanks

    If you purchased an app in one account and work mostly in another, how do you switch the purchased app account to update it?
    thanks

    You need to sign out and back in only if you're on your Mac and you want to update the iTunes data.  You'll see a notice saying that there are five (or so) updates but when you go to download them, they're not all present.  So you download them, sign out from one ID and sign back in with the other ID.  Then you can download the remaining ones.
    If you're downloading directly to the iPad, everything is transparent.  It does not matter what ID is configured in Settings.  The iPad automatically chooses the correct ID or IDs when updates are available.

  • HT1495 how to delete apps when using one account for iphone 4s and ipod4, can delete from phone but not ipod

    How do we delete apps from ipod 4 when using same account as iphone 4s, we can delete from the phone but not the ipod, and when i get an app on my phone it automatically comes up on the ipod and visa versa, now ipod is full,

    Read the article from which the thread was posted, it clearly defines how to use multiple iDevices on a single computer.
    Sharing an Apple ID is not an issue.

  • Creating to BDC's in one program

    Hi Experts,
    Can we create two BDC's in one program.

    Hi Lokesh Reddy,
    Ofcourse you can create more than 1 BDC in a single program
    I have myself created 4 BDCs in single program.
    Just remember to call the Transactions in correct order and also loop them properly, at times wrong looping messes up the BDC.
    If you feel all transactions calling in 1 loop are confusing you, then u can club 2 transactions in 1 loop.
    so that your 1st loop executes 2 transactions, once that loop is successfully over, the control moves onto the next loop, with same or different transactions. Dont worry the same data will be used by both the loops, as it'll be looping on the same internal table.
    If your BDCs are not using same data, some are using 1st few columns, some the rest one
    at such times wat u can do is take all data from flat file into 1 internal table and then individually move particular columns to another internal table.
    then the BDCs that require data from 1st internal table, so loop at that internal table
    the ones which need data from another internal table, so loop at the other internal table.
    Please note as many recordings / BDCs u call those many number of time u have to write the statement.
    CALL TRANSACTION.....
    Like I wrote 4 BDCs in single program, I had to write CALL TRANSACTION 4 times.
    Once u finish everything...put a break point and debug the whole program, u'll actually get to see the flow in which ur data is read, used by bdc, enters the data, how the control moves from 1 BDC to another, how the control goes from 1 LOOP to another, etc.
    debug it in foreground 1st mode 'A', once u feel its going fine, then change it to background mode 'N'.
    I hope this would help u All The Best.
    Regards,
    RadhikaS

  • How do I print more than one 4X6 on a page?

    How do you print more than one 4X6 on a page?

    It can be done in Lightroom 2 but, as John pointed out, it requires a 'hack.'  Here is how it's done:
    http://lightroomkillertips.com/2009/video-multi-photo-picture-packages/

  • How do i transfer music from one iphoe to another

    how do i transfer music from one iphone to another

    Hi there, @Robarooah67,
    You can't send or receive music files on your iPhones.
    You can connect the iPhone to your PC or Mac, after that you have to open iTunes and then Sync the device with your Music Library.

  • How do I order more than one book at a time?

    I created 10 photo books I would like to order, but when I go to place my order I can only place one book at a time.  I do not want to place 10 different orders.  How do I order more than one book at a time?

    You can't.  Only multiples of the same book can be ordered at a time.  Each individiual book must be ordered separately.
    OT

  • HT5622 I tried to send a photo on my phone in a chat message.  The photo locked up.  I can't get back to photo stream.  How do I restart phone or solve issue otherwise.

    I tried to send a photo on my phone in a chat message.  The photo locked up.  I can't get back to photo stream.  How do I restart phone or solve issue otherwise.

    More than likely you can get the phone back by doing a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.

Maybe you are looking for