Does PrintJob class have change since JDK 1.4  ?

Hello,
I have a compatibility problem when suing the PrintJobClass (print method).
I have a class which prints in Landscape mode. It works well with all JDK 1.4;x but It prints in Portrait mode since 1.5.0._06. (maybe with previous levels of version 1.5 but I hadn't tried).
I just have installed 1.5.0._09. But it is the same.
Any idea ? Thanks in advance
Gege

public void setInnerClass(sb.Essai$InnerClass p1) {There is no type named Essai$InnerClass defined anywhere in your program. That is an error in your program that previous compilers failed to detect.

Similar Messages

  • Help help please...Photoshop CS, on a Windows XP machine.   After re-booting the machine after an unexpected power failure I have been told that the "Configuration appears to have changed since the time this product was activated. To continue using this p

    Help help please... I'm running Photoshop CS, on a Windows XP machine.   After re-booting the machine after an unexpected power failure I have been told that the "Configuration appears to have changed since the time this product was activated. To continue using this product I must re-activate it".  BUT the activation link informs me that they no longer support the product (neither online nor telephonically).  So how can I re-activate this software?

    Hello Helios & Eb29075,
    +1. Please check log file for error message.+
    +2. Check status of EM.+
    +3. Please see:+
    +How To Drop, Create And Recreate DB Control In A 10g Database [ID 278100.1]+
    +Problem - emctl start dbconsole Fails with Error OC4J Configuration issue OC4J_DBConsole__ not found [ID 555218.1]).+
    As you said above, yes, I did find OC4J config issue & EM Config issue and resolved them. But still I couldn't get my DBConsole started.
    Yes, I was able to drop DBConsole<sid> service using 'emca' repository drop. But, when I started recreating repository for DBConsole service, I wasn't able to do it. I tried several times but in vain.
    Thanks,
    A.P.

  • The touchscreen of my iphone is not working, and I want to backup my most recent photos onto my mac, but I have a passcode that I have changed since my most recent backup around a month ago. What could I do to get my photos back?

    As the title says,
    My iphone touchscreen stopped working around two days ago, so I cannot input my passcode. I am trying to backup my most recent photos as I have been on a trip abroad to phuket the past week, and got back home but did not have time to move my photos from that trip onto my mac before the touchscreen stopped working. I have a problem because I backed up my iphone last around a month ago, but have changed my passcode since so my iphone is not allowing me to back up onto my mac through itunes. I wish I at least hadn't changed the passcode, or had my photos on icloud, but I have so many photos that the icloud storage would cost so much for me to keep them updated.. I am so frustrated right now as it's not that I have forgot my passcode, or that I don't know it at all, but I know it. I wish there was a software that I could use on my mac to enter the passcode or something. Is there a way I could do something about it?!

    So you are not using Photo Stream? If you are, then you can turn on Photo Stream on iCloud on your Mac, and then go to iPhoto or Aperture and the Photo Stream will show under "Web" in the sidebar.
    You can also set up your iPhoto or Aperture preferences to automatically import your Photo Stream, so any photos you take with your iPhone camera will upload and import automatically and will show under events, broken into monthly groupings.
    Photo Stream does not use any of your iCloud storage.
    Here are the Preference Screens I'm referring to:
    iPhoto:
    Aperture:
    One other thing concerning your Touch Screen. Have you tried resetting your device (nothing will be lost) to see if that will get your Touch Screen working again: Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Home screen redisplays see if your Touch Screen is working.
    Best of luck,
    GB
    Message was edited by: gail from maine

  • CALL FUNCTION 'SX_OBJECT_CONVERT_ALI_RAW' fields have changed since 46C

    We are implementing upgrade to mysap 700 from 46C
    PROGRAMS USING function call to 'SX_OBJECT_CONVERT_ALI_RAW'  fields have changed
    we used to send tables directly and now we are sendin fields to be changed
    i have tried to send the data but continue to have errors
    700 version has this function with these paramaters
    CALL FUNCTION 'SX_OBJECT_CONVERT_ALI_RAW'
      EXPORTING
        FORMAT_SRC            = SOURCE_NAME
        FORMAT_DST            = OUT_NAME
        ADDR_TYPE             = 'FAX'  " int or fax
        DEVTYPE               = DEVTYPE
       FUNCPARA              = 255
      CHANGING
        TRANSFER_BIN          = LISTOBJECT
        CONTENT_TXT           = content_txt
        CONTENT_BIN          = content_bin
       OBJHEAD              =
        LEN                   = OUTLEN
    EXCEPTIONS
       ERR_CONV_FAILED       = 1
       OTHERS                = 2
    changing
    TRANSFER_BIN        TYPE      SX_BOOLEAN                                         
    CONTENT_TXT         TYPE      SOLI_TAB                                           
    CONTENT_BIN         TYPE      SOLIX_TAB                                          
    OBJHEAD             TYPE      SOLI_TAB                                           O
    LEN                 TYPE      SO_OBJ_LEN                    
    when ran we get an abap dump content_bin                     
    Error analysis                                                                       
        An exception occurred that is explained in detail below.                         
        The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was     
         not caught in                                                                   
        procedure "GET_MEMORY_LIST" "(FORM)", nor was it propagated by a RAISING         
         clause.                                                                         
        Since the caller of the procedure could not have anticipated that the            
        exception would occur, the current program is terminated.                        
        The reason for the exception is:                                                 
        The call to the function module "SX_OBJECT_CONVERT_ALI_RAW" is incorrect:                                                                               
    The function module interface allows you to specify only                         
        fields of a particular type under "CONTENT_BIN".                                 
        The field "CONTENT_BIN" specified here is a different                            
        field type                                                                       
    it looks like i need to set <fs> pointer to the field but i am akwardly at this any help please will do well.
    this is how we used to use the function
    CALL FUNCTION 'SX_OBJECT_CONVERT_ALI_RAW '
          EXPORTING
               FORMAT_SRC      = SOURCE_NAME
               FORMAT_DST      = OUT_NAME
               DEVTYPE         = DEVTYPE
               FUNCPARA        = FUNCP
               LEN_IN          = INLEN
          IMPORTING
               LEN_OUT         = OUTLEN
          TABLES
               CONTENT_IN      = LISTOBJECT
               CONTENT_OUT     = OBJTXT
          EXCEPTIONS
               ERR_CONV_FAILED = 1
               OTHERS          = 2.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    ok i solved my own problem.... i new i could.  here is the results
    first i had to dig into the bapi to find the proper definition to declare in my program i will present the code
    and let you exame the example.
    FORM GET_MEMORY_LIST TABLES   P_MYSECOND STRUCTURE ZLIPOV.
    DATA: LSIND LIKE SY-LSIND,
          LISTTAB LIKE ABAPLIST OCCURS 1 WITH HEADER LINE,
          OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE,
          SOURCE_NAME LIKE SXCONVERT-FORMAT_SRC,
          OUT_NAME    LIKE SXCONVERT-FORMAT_DST,
          DEVTYPE     LIKE SXSERV-DEVTYPE,
          FUNCP       LIKE SXFUNCPARA,
          INLEN       LIKE  SOOD-OBJLEN,
          OUTLEN      LIKE  SOOD-OBJLEN,
          UPDFLG      TYPE I VALUE 0,
          LNCNT       TYPE I VALUE 0,
          LABLNCNT    TYPE I VALUE 0,
          PRVLN       TYPE I VALUE 0.
    this is the added structures for the new fields
    used for SX_OBJECT_CONVERT_ALI_RAW and the rest of the SX_OBJECT_CONVERT family
    data:
         TRANSFER_BIN TYPE  SX_BOOLEAN, " SHOULD BE SET TO X
         OBJHEAD like SOLI occurs 0,
         content_txt   LIKE soli  OCCURS 0,
         content_bin  LIKE solix OCCURS 0.
    CLEAR LISTOBJECT[].
    CLEAR OBJHEAD.
    CLEAR CONTENT_TXT[].
    CLEAR CONTENT_BIN[].
    CALL FUNCTION 'LIST_FROM_MEMORY'
         TABLES
              LISTOBJECT = LISTTAB
        EXCEPTIONS
             NOT_FOUND  = 1
             OTHERS     = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
       IMPORTING
            COMPRESSED_SIZE =
         TABLES
              IN              = LISTTAB
              OUT             = CONTENT_BIN   " this will receive the data
       EXCEPTIONS
            COMPRESS_ERROR  = 1
            OTHERS          = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
      SOURCE_NAME = 'ALI' .
      OUT_NAME    = 'RAW'.
      DEVTYPE     = 'POSTSCPT'.
    TRANSFER_BIN ='X'. " set to x our program will fail to convert stupid but needed
    describe table listtab lines inlen.
    DESCRIBE TABLE LISTOBJECT LINES INLEN.
    SX_OBJECT_CONVERT_ALI_RAW
    SX_OBJECT_CONVERT_ALI_PRT
    SX_OBJECT_CONVERT_OTF_RAW
    SX_OBJECT_CONVERT_OTF_PRT
    SX_OBJECT_CONVERT_INT_RAW
    DESCRIBE TABLE content_bin LINES INLEN.
    CALL FUNCTION 'SX_OBJECT_CONVERT_ALI_RAW'
      EXPORTING
        FORMAT_SRC            = SOURCE_NAME
        FORMAT_DST            = OUT_NAME
        ADDR_TYPE             = 'FAX'  " int or fax
        DEVTYPE               = DEVTYPE
       FUNCPARA              = 255 " this is used to prevent wrapping if beyond 132 characters
      CHANGING
        TRANSFER_BIN          = TRANSFER_BIN
        CONTENT_TXT           = content_txt " returns the data we want to address and work with
        CONTENT_BIN          = content_bin" data is conpressed and in binnary format
        OBJHEAD              = OBJHEAD
        LEN                   = OUTLEN
    EXCEPTIONS
       ERR_CONV_FAILED       = 1
       OTHERS                = 2
    move content_txt[] to OBJTXT[]. " in my case the program origianly used OBJTXT
                                                        "  so i chose to compy the data back here

  • How to find procedures which have changed since the previous day

    Hi All,
    My requirement is to find out the procedures which have been changed since last day i.e the procedures which were compiled in the previous day.
    How could I find this using query. Please help me out.
    Thanks in Advance
    Regards,
    Srikanth

    All objects, visible to your schema, that were created or modified during the previous day
    select OBJECT_TYPE
          ,OBJECT_NAME
    from   all_objects
    where  trunc(LAST_DDL_TIME) = trunc(sysdate-1)
    order  by object_type
             ,object_name;

  • Never had such bad support - Think(g)s have changed since IBM

    I just wanted to point out that lenovo has one of the worst support i ever had with businnes products.
    I was always a thinkpad buyer and spend a lot of money to ibm. OS updates went well and the hardware compatibility was good. I always used the support and they fixed my problems, maybe not very quick, but they did.
    Now lenovo is on start:
    My fist os update with lenovo was vista to win7. After this update my ricoh card reader does not work. I tried the forum support and withdrawn it after i got working solution here. The telephone support does not helped me. Nothing worked and does still not work now.
    My next support reason was a forgotten BIOS supervisor password. The phone support offered me to replace the mainboard while everyone knows that is not needed. Luckily i found my password after more than one year.
    You may say its courious to aks for support with such things.
    The last and the worse happened some day ago. My hdd is old and slow so i wanted to replace it with a ssd drive. I searched for "lenovo thinkpad t61p" and "ssd upgrade" and found a crucial ssd drive which is offered as Lenovo upgrade. After i installed it i got an error bios error 2100. No problem i thought and updated the bios and the firmware from the drive because i have seen ssd updates in the bios changes text. After it was still not working i contacted this forum. Weeks later i had no answers which could help so i called the business support. First the guy on the telephone told me my thinkpad is not for ssds. After i pointed him to the bios upgrade which contain ssd upgrades he told me that there will be no non lenovo support for ssd drives and i have to buy a lenovo ssd. He doesn want to know the model number of the drive so this bug could be fixed at any time.
    This is the most bad support i ever had. I wouldnt be angry if my notebook would cost 500€ or 1000€. But for a product which costs nearly 3000€ and still has warranty i expected more commitment also for non lenovo products. Even cheap notebooks from asus/msi offer such incompatibilty service. Does lenovo want to ruin themself while scaring the user away with their service?
    For my part i am done with lenovo and switching to DELL or HP after six IBM/Lenovo notebooks
    Thinkpad T61p (6457-7XG)

    If any decision higher ranked decider reads this. Here is the link for the upgrade: http://www.crucial.com/store/listparts.aspx?model=ThinkPad%20T61p%20Series&pt=SSD The model number is: (CTFDDAC128MAG-1G1). Contact Crucial so that site will removed in the future.
    Thinkpad T61p (6457-7XG)

  • Crop Marks have changed since CS

    Hi all,
    I am coming from the stone age (Illustrator CS) and the use of crop marks in CS5.5 is tripping me up.   I used to be able to drag a box around some art, change the box to crop marks and export to a .jpg that would be cropped to those marks.   Now it seems that creating crop or trim marks don't work that way any more.  What am I doing wrong?   Thanks.

    Yes, it now provides multiple artboards. Harken:
    • You've got an artboard with art on it
    • As in previous versions, you draw a rectangle above the part you're going to export
    • While this rectangle is selected, go to Object > Artboards > Convert to artboard.
    • Make sure that this new artboard is the current artboard, go to File > Export and export as a .jpg using the Use artboard option in the Export dialog
    If you're going to export through the Save for Web dialog, then make sure to turn on the Use artboard option that is available somewhere in that dialog.

  • Acrobat 7.0 Std "your computer's configuration appears to have changed"

    I installed Adobe Acrobat 7.0 Standard on my computer (which is running Windows Vista Business SP2) and I'm getting this error message every 2-3 minutes even if I activate my product :
    "Your computer's configuration appears to have changed since the time this product was activated. To continue using this product, please click OK to activate it again for your new system configuration, or click Cancel to exit."
    I made Updates to version 7.1.4.
    I have also tried Adobe Licence Manager 2.70 Patch without any success. Does somebody know any solution (Maybe Windows Vista and Acrobat 7.0 incompatibility)? Thank you!

    The word NEW is likely your problem. You may have VISTA or Win7. AA7 may work on the system, but not in total. Very likely you will not be able to use the Adobe PDF printer directly. You are talking about the nickel from Adobe, but it may more be related to an OS upgrade that caused a functional failure in Acrobat. Acrobat works at a lower level of the OS to produce the PDFs and that is where the problem crops in when MS makes major changes. Maybe Adobe could have done the creation process differently, but that is not the case. This has also been the case with the macros that run PDF Maker in OFFICE 2007, making AA8.1.1 and earlier only work as a printer, not with the create PDF.
    I understand your frustration, but some of what you are describing is due to the OS and not Acrobat.

  • Adobe Illustrator preview icons changed since upgrade to Snow Leopard

    all of my Illustrator files preview icons have changed since upgrading to snow leopard. They use to have the Ai logo. Now they have what looks like the Postscript icon.
    I believe preview icons are controlled by the OS so not sure what to do. Have done all of the usual run disk permissions etc.

    Illustrator CS4 is installed on my computer and works fine. Double clicking the file will launch or open in Illustrator. It's only the preview that is wrong and a bit of a nuisance if I am looking for an illustrator file

  • Hi, I have a Power Book G4 Tiger 10.4.11 and my problem concerns iTunes 9.2.1(5). I have changed my Apple ID and password recently. Since that, I am told when I try to buy something in iTunes Store that my "session has expired". Where does this come from?

    Hi, I have a Power Book G4 Tiger 10.4.11 and my problem concerns iTunes 9.2.1(5). I have changed my Apple ID and password recently. Since that, I am told, only when I try to buy something in iTunes Store, that my "session has expired". Where does this come from? What should I do to solve this problem ? I would greatly appreciate your help. Thank you in advance.

    Hi, I am khonthaï. I solved the problem thanks to JHdeVilliers's post on 4 Dec. 2011: I removed all cookies in Safari and it worked immediately !!!

  • Graphic card problem maybe? Since when I have changed the hard drive to my macbook pro and I installed all the new softwares, my mac is very slow and the screen gives crazy pictures,could maybe be the graphic card, does anybody have experienced this?

    Graphic card problem maybe? Since when I have changed the hard drive to my macbook pro and I installed all the new softwares, my mac is very slow and the screen gives crazy pictures,could maybe be the graphic card, does anybody have experienced this?

    after a restart it works for a time, but always slow. I went to the Applestore this afternoon and the made a check and said it would be the logicboard and they would have to change it for CHF 600 and it would be ready in 10 - 15 days

  • I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. Pls help

    I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. I just download the recent trail version of Iworks and install it. The first document I opened it was ok. When I open the second one the problem appear again and stayed. Pls help

    This behavior was described many times.
    In every occurrence,the operating system was an uncompleted one resulting of the use of Software Update to update the operating system to 10.6.2, 10.6.3, 10.6.4, 10.6.5, 10.6.6, 10.6.7.
    In such cases, the solace was to apply a combo updater.
    As you are using 10.6.7, download and apply the combo 10.6.7 :
    http://support.apple.com/kb/DL1361
    After that, run Software Update which will urge you to apply :
    Snow Leopard Font Update
    Yvan KOENIG (VALLAURIS, France) dimanche 29 mai 2011 21:15:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Mac user, OSX 10.9.4. CS6, in the new Blur gallery the pin with adjusters does not appear for any of the three blur filters. This may have occurred since taking adobe watermark add-on and updating Bridge. any ideas?

    Mac user, OSX 10.9.4. CS6, in the new Blur gallery the pin with adjusters does not appear for any of the three blur filters. This may have occurred since taking adobe watermark add-on and updating Bridge. any ideas?

    I am using Mac OSX 10.10.1 (memory 8 GB 1600 MHz DDR3, graphics Nvidia GeForce GT 650M 1024 MB)
    and my version of Photoshop is CC.
    I ran into  the same problem: I am able to place and view Blur Gallery pins but the adjustment wheel or outer control arounf the pin that allows you to tweak the blur value disappeared after being initially available. Additionally, the placed pin or pins appear to flicker on screen (while in blur gallery mode) until committing the change with the OK button. I have tried restarting both the computer and Photoshop, as well as what some other users have suggested such as View>Show>Edit pins turned on. Nothing has helped so far. I am still able to adjust the blur amount  from the Blur Tools slider. thank you.

  • I have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    i have changed my payment method with another and since then it dose not except the new payment method i tried another one same thing is happing

    What payment method are you trying to use? Prepaid debit cards by chance? Apple does not accept prepaid cards.

  • I Have iTunes since 2008. I have changed computers and I know have old libraries but iTunes do not locate a lot of songs when I try to play it. How can I correct this situation?

    I Have iTunes since 2008. I have changed computers and I know have old libraries in my Hard Disk but iTunes do not locate a lot of songs when I try to play it. How can I correct this situation?

    When iTunes say that try to find the file you want iTunes to play in your iTunes > Media folder.  If iTunes offers to find others, let it. If it does not find them all you will have to find them yourself or re-add the files from your drive to iTunes (use Automatically Add to iTunes folder).
    iTunes 9: Understanding the "Automatically Add to iTunes" folder. - http://support.apple.com/kb/HT3832 - Files put into this folder are actually moved from this folder onto the correct location in the iTunes Media folder.

Maybe you are looking for

  • Why isn't itunes letting any one burn a disc

    I have itunes 11.0.4 with a Windows 8 program . It will not allow to burn a disc or back up discs as the older versions did. This is very upsetting because my friends were depending on me to help save their vinyl recordings to disc. I can print a jew

  • Server does not support RFC 5746, see CVE-2009-3555

    When accessing option: "Personal Banking" at "www.onlinesbi.com" Firefox 3.6.8 crashes. ERROR CONSOLE displays "www.onlinesbi.com : server does not support RFC 5746, see CVE-2009-3555". OS: Windows Vista Home Premium SP-2.

  • Using a dynamic lookup table

    Hi, Simple question for the ODI guru's.. for an interface that we use, there is a requirement to dynamically look-up value's in a lookup table and then use these value's from the lookup table to write to a target table. This instead of hard coding st

  • IPhone has different Apple ID from MacBook

    On my iPhone I am unable to update apps or purchase anything in iTunes because I do not know my iPhone password and I am unable to update it. I used the same ID & pw for years, with my iTunes account on both an iPod and iPhone without difficulty. I h

  • How to uninstall pre loaded Office Trail

    New to the world of a Mac and got myself a lil baby Mini. Although I got a 80gig drive I only have about 10gig left as I do quite a bit of vid editing. How can I uninstall the Office trial software? I know this was a big file on my PC and am sure it