Programs that have been written in java

I am trying to figure out what i can and cant make in java??
What (big or important) programs have been written in java??

You can do many things!!! You can really do just about anything with java that you can with other programming languages.
PS-Use the robot class for screen capture, use multiple screen captures in delayed succesion to get a list of images that can be animated.

Similar Messages

  • How to change text in spool that have been written on report program?

    Hi all,
    I have a problem to write total page no. to spool.
    The user want to run report both in foreground and background.
    I write total page no. as below.
    DO L_TOTALPAGES TIMES.
    READ LINE 3 OF PAGE SY-INDEX.
    REPLACE '###' IN SY-LISEL WITH L_TOTALPAGES.
    MODIFY LINE 3 OF PAGE SY-INDEX.
    ENDDO.
    it work well in foreground but only final page is ok in background.
    why? how to resolve it?
    thanks first.

    Hi Tihua
    I hav faced the same problem.
    The only way to solve this is you have to run this write statement before sending to spool inside the program. for that you hav to export the internal table values to another program which is called by using submit statement. write all the write statement as if it is in your current progrm.
    After executing the whole loop you can import the no of pages to your current repot. and write leave progam at the end.
    after that you can use that value in your report.

  • I need to delete programs that have been duplicated after the software update has been done.  The computer won't delete them.  Anyone else having this problem and if so, how do I delete the old program after it's been updated.

    After upgrading software, it appears the old software isn't deleted.  My computer hard drive is almost full so I need to delete a ton off of my computer.  When checking the software that can be deleted I noticed I can the old software hasn't been deleted.  How can a person do this?  Any suggestions on how to quickly dump some programs.

    Sig is right — reclaiming space on your hard drive should be a matter of looking for the largest files you can delete, not starting with applications. I have 200+ applications on my hard drive, and altogether they occupy less than 14GB of space. Just a handful of them — Acrobat Pro, iPhoto, Aperture, Illustrator, Photoshop, InDesign and Adobe Media encoder — are larger than 500MB apiece, and if I disposed of all of those, I'd only get 5.6GB back. My Utilties folder contains 78 apps, and it only amounts to 1.1 GB.
    If you have any feature-length movies on your hard drive, those should be the first things you trash or move to an external drive.

  • Does time capsule remember the programs that have been uninstalled?

    I wonder if I use time capsule to back my macbook and then uninstall a program, can i recover it later?

    I would turn off TM then.. do the backup.. turn off TM whilst you make the changes and then try to restore without doing another backup.. you have zero control of what TM might do.. it is highly unlikely to delete your files in such a short time.. but do you want to find out the hard way.
    I would also copy the files to the TC.. so you can restore them by a simple copy.. but removing and restoring programs.. let it be on your own head.
    I would also do a full image so if something goes astray you can spend 1 hour not several days in recovery.

  • HT203175 I have 2 episodes of 2 TV programs that have been stuck in processing file for several hours.How do i get the program to finish?

    I've been download 2 episodes from the itunes store. They have both in "processing file" mode for hours. The amount of MB of the files are complete but the downloading icon is still going. How do I get these 2 episodes to finish the processing file mode?

    Rammses-
    Try following the steps in this article, and try to go about restoring your iPod again. See if you can't get it to work...
    http://docs.info.apple.com/article.html?artnum=302538
    Also, it never hurts to try to put the iPod into disk mode whenever you're going to restore it.
    http://docs.info.apple.com/article.html?artnum=93651
    Best wishes,
    CG

  • I just bought a used XP Home Edition program that has been installed before. Will I be able to install this again on my computer or is it only a one time use software? I have the Product Key and CD.

    I just bought a used XP Home Edition software program that has been installed before. I have the Product Key and installation disc. Will I be able to install it on my own computer? Or, is this software (purchased retail) a one time install? Please advise.

    Depends on many things.
    If your system is Lion, XP can only be installed under VM.  BootCamp in Lion only accepts Windows 7.
    As to "one use only", if you are referring to OEM ...
    A reinstall can trigger the OS to "not register" because "a major component serial number or MAC (the network MAC chip) address" has changed, according to MS databases.
    But you can call MS to get the key reactivated, usually/sometimes.  It is worth a try, at least, before spending money on another Windows 7 package.  But this discussion should end *now* at "maybe" as it treads close to matters that forum Terms-of-Use would prefer we not discuss.

  • What is feature about programing on 10g that have been deprecated on 11g?

    Hi All
         I knew just about new feature and enhancement on 11g but I don't know about programming feature that have been deprecated or obsoleted on 11g.
         Because my client concerned If they will upgrade to 11g, What have source codes been impacted or need to be rewritten?
         Updated : I opened SR for this question already if I got any information, I will share to you all ASAP.
    Thank you for advance.
    Hiko

    Well, I know at least one 10g behavior that changed in 11g (and it is documented). In 10g XML extract method automatically applied pretty-print:
    SQL> select  *
      2    from  v$version
      3  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    SQL> set long 1000
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  value(x).extract('/parameters') res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters>
      <parameter name="result">
        <value>success</value>
      </parameter>
      <parameter name="showBirthday">
        <value>false</value>
      </parameter>
      <parameter name="_wrCommand">
        <value>clearCacheBefore</value>
      </parameter>
    </parameters>
    RES
    SQL>
    And on 11g XML method will not pretty-print. Using XMLSERIALIZE, will:
    SQL> select  *
      2    from  v$version
      3  /
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for 64-bit Windows: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> set long 1000
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  value(x).extract('/parameters') res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters><parameter name="result"><value>success</value></parameter><paramete
    r name="showBirthday"><value>false</value></parameter><parameter name="_wrComman
    d"><value>clearCacheBefore</value></parameter></parameters>
    SQL> with data as (
      2                select  xmltype(
      3                                '<parameters>
      4  <parameter name="result"><value>success</value></parameter>
      5  <parameter name="showBirthday"><value>false</value></parameter>
      6  <parameter name="_wrCommand"><value>clearCacheBefore</value></parameter>
      7  </parameters>') val
      8                   from  dual
      9               )
    10  select  xmlserialize(document extract(value(x),'/parameters') indent size = 2) res
    11    from  data,
    12          table(xmlsequence(extract(val, '/parameters'))) x
    13  /
    RES
    <parameters>
      <parameter name="result">
        <value>success</value>
      </parameter>
      <parameter name="showBirthday">
        <value>false</value>
      </parameter>
      <parameter name="_wrCommand">
        <value>clearCacheBefore</value>
      </parameter>
    </parameters>
    RES
    SQL>
    SY.

  • Text etched out of historical document, I need help re-exposing the ink. Some areas have been written over.

    I have a really interesting dilemma that I really need some assistance with.
    I took a 8 panoramic photographs of 8 individual lines of text and I need some help to re-expose the old words.
    The images can be downloaded from my flickr album.
    The photos I have posted show written text from an 18th century MIT professor's journal. The professor was fired and historians would like to know why. The only problem is... the professor had etched out crucial words/names to keep us from knowing what was originally written. In some cases, he etched out old words and rewrote newer words in there place.
    Please download and play with the image and let me know if you have been successful. -or- let me know what I have to do to pull out the ink.
    Thank you all so much!
    -Mark
    [email protected]

    Thank you for your response. 
    The image was shot with the Canon 6D in conjunction with our Macropod photomacrography system and the images are shown as they exist on the page. 
    I work closely with the researcher who needs to interpret this journal and I know that the faded ink has been neither transferred from the next page -or- stamped from the previous for two reasons.
    1) The images are very high in resolution.  If you download the full size image, you can see down the fibers in the paper.  The ink is only shown on the surface of the fibers (this indicates a stamp as you suggest).
    2) It is not a stamp or a transfer because we can look at what is written on the previous and following pages and they do not match the writing.  We also see the words slanted as they should be.
    This author is notorious for etching out ink.  He even describes his technique in century old texts in Cambridge.  He used a tool made of graded glass and and a pick in conjunction with minor amounts of a solution.  However, some remnant ink still exists where it has been removed.  Furthermore, he only removed words that contain critical information such as names.  In some cases, there is also a small imprint superimposed onto the marks from the etching.  However, 200 years of rebound was enough to make this extremely difficult to see.
    If you can convince yourself that the subtle ink splotches are, in fact, words that have been removed from the page that is gown (as we have convinced ourselves over the past year after hours of examination) you will help us achieve our goal.
    I've used techniques such as color-inversion, leveling, extreme contrast, but I have limited photoshop knowledge about how to best analyze and process these images in order to achieve the solution.
    I thank you for your continued help and I would be very happy to see what you can ultimately deduce. 

  • Deleteing files that have been downloaded by Software Update Service

    I have an XServe that is set to download the latest updates from Apple, and the the workstations pull the updates from the machine. I noticed the XServe was running out of space. I had a look and found that over 11GB of files are sitting in the following destination:
    Macintosh HD/usr/share/swupd/html
    These look like all the software updates that have been downloaded.
    How do I delete these files? If I had to just delete the files in this destination would it affect anything? I don't see anywhere in the software update service to delete the files it has downloaded.
    Also by looking at the machine, the System Drive is 80GB, and the Software updates are 11GB's. And I only have 2GB's left on the machine. I have made all the invisible files visible, but still cannot see where all the other data is sitting.
    I have used the WhatSize app and still cannot find the remainder files taking up all the space?
    Thanks in advance for any help.

    What happens if you use a "offline browser" like HTTrack and
    open these
    files in DW?
    Kim
    DaveIdaho skrev:
    > I have been totally perplexed by a problem I'm having
    and think the answer may
    > lie with Dreamweaver.
    >
    > I recently lost some files on a hard drive crash that
    were important pages on
    > my site. I want to update them so thought I could
    download them from the site
    > for the work. After downloading them to my local site,
    Dreamweaver refuses to
    > open them, giving me several error messages before
    closing.
    >
    > Messages I get when attempting to edit my downloaded
    file:
    >
    > 1) Corrupt JPG data: premature end of data segment;
    >
    > when I close this error message, I get:
    >
    > 2)Invalid JPG file structure: two SOI markers;
    >
    > after closing this one I get:
    >
    > 3) The instruction at "0x77f5b2ab" referenced memory at
    "0x00000028". The
    > memory could not be "read". Click on OK to terminate the
    program.
    >
    > Front Page does open up the same files with no problem,
    however I prefer to
    > work with Dreamweaver and not FP.
    > The files are .asp, by the way.
    >
    > Any clues or help will be very much appreciated.
    >

  • I have files that have been on my computer for over a year and all of a sudden they wont open and an error message comes up saying they were improperly downloaded or came in an email attach which is not the case

    I have files that have been on my computer for over a year and I have used them several times and all of a sudden they wont open.  I received an error message saying they are improperly downloaded or came as an email attachement which is not the case.  Please advise

    They seem to be word files - they will open if I choose "open with" microsoft word, but if I double click they don't open they are appearing as PDF on my screen.  I even opened one and then tried to "save as" making sure I chose .doc and they still appear as PDF
    I just created a new document response.doc in word and when I saved to my desktop it appears as a PDF file and I absolutely did not create a PDF or save as PDF it was a simple word
    doc.
    The message says "Adobe reader could not open response.doc because it is either not a supported file type or because the file has been damaged (for example attached in an email and not properly decoded)
    The reader version is I believe the most current, I always update when prompted.  OS is Windows 8

  • When I open a pdf document from my dropbox to view it, the document shows up blank, even though it is filled out. This also happened with pdf documents that have been e-mailed to me.

    When I open a pdf document from my dropbox to view it, the document appears blank, even though I know the information is actually there. This also has happened with pdf documents that have been e-mailed to me, then opened to view and they are blank?? Why are they showing up blank?

    When I open emails with PDFs I click on the attachment (doing this all on my iPad) it gives me the option to "open in iBooks", I accept then after that the document is sucked into my iPad but I can't do anything with the PDF after that.  Where is the actual file on my iPad? Why can't I email or send these PDFs to my cloud (Dropbox)?
    It's like once they go into iBooks they're stuck forever.

  • Does anyone know why Adobe CC is failing recognise or open files taken on a Nikon D4 that have been previously edited in CS5?

    I'm just migrating some of my image archive across from one hard drive to another.  During the process, I checked the files in Bridge to see that they'd copied correctly.  It was here that I noticed that for some reason, in every folder that I've moved, there are at least a few images that it fails to recognise.  These images are listed as having no camera model and no serial number.  Attempting to open them in Photoshop CC says that it is an unrecognised file.  Bridge struggles for a while, manages to eventually recognise a lot of them but always leaves a few that it cannot work with.
    Having looked at the original drive, the files are fine and open perfectly.  One thing that I've noticed is that some (not all) of the now corrupt files have been previously edited in CS5.  Removing the sidecar xmp file makes no difference.  Purging the cache makes no difference.  Repairing permissions makes no difference.
    I am running OSX Mavericks (10.9.3) and have the latest updated version of CC.
    Please help!
    Leon

    I'm using an Intel iMac, 3.6Ghz Intel core i5 with 12GB of 1333 Mhz DDR3 RAM.
    The iMac has OSX 10.9.3 installed with all of the latest updates.
    I'm using Adobe CC with all of the latest updates installed so Bridge is version 6.0.1.6.
    I have repaired permissions, rebooted the Mac, re-started Bridge and cleared the Bridge cache.
    The raw files are .nef files from a Nikon D4.  They are currently stored on an external Western Digital red hard drive and all of the images are accessible and load correctly.
    In moving the files across to a new Western Digital green drive, Bridge is failing to create some of the thumbnails.  After waiting for all of the thumbnails to be created, the remaining files are simply displayed with a nef files icon.  Any attempt to open them fails, with Adobe Photoshop CC displaying a message stating that the file is not in a format that Photoshop can understand.
    On investigating further, I have found that the images that are causing issues are ones that have been edited before and have sidecar .xmp files.  These .xmp files were created during editing when using Adobe Photoshop CS5.1.
    I hope that's everything that you requested.
    Leon

  • We have two users that have been using Creative Cloud for almost a year. Recently, sometime in the last 4ish weeks, the users can no longer run Creative Cloud apps. (Yes, our subscription is paid.) Error simply says administrator access is required

    We have two users that have been using Creative Cloud for almost a year. Recently, sometime in the last 4ish weeks, the users can no longer run Creative Cloud apps. (Yes, our subscription is paid.) Error simply says administrator access is required to install. The apps have already been installed. The users cannot run them unless they are in the local admin group.Using "Run as admin" does not work. It gives the same error.
    I have opened a case with adobe support and was basically told to suck it up and put the users in the admin group. Actually, what was said was that it is "mandated that the users have administrative rights". 
    There are a couple of things wrong with this. It was working for both users until recently - a recent required creative cloud update. The users have never been local admins yet the apps were working (poorly, but working).
    We are in an enterprise environment and users simply do not have administrative rights on the computers.
    I have changed permissions on all adobe folders, granting users or authenticated users modify or full control rights, did the same in whatever Adobe registry HKLM keys I could find. Nothing has allowed the users to run the apps - unless they are put in the local admin group.
    Someone has to have a fix for this. Adobe apps have proved to have far too many vunerabilities to even entertain the idea of elevating user rights. I can't imagine that enterprise environments are allowing this.
    Any help or suggestions are greatly appreciated.

    Jeff,
    Thank you for your response. The users in question are "standard" domain users. We do not reduce users permissions below the standard level.
    The apps do not load with their current standard user permissions.
    The thing that makes this odd, is that up until recently they did this issue with cloud apps. The only way I can make it work for them now is to put them in the local administrator group on their pc's - which is not going to happen.
    This is what they now see. As I said before, this was not a problem up until recently they would see all their available apps. If I put them in the local admin group the apps are listed without having to install. Everything is there, just not accessible to the user.

  • I have been saving photos that have been emailed to me. They show up in the camera roll and then I put them in separate albums. My camera roll when I try to open it freezes and the thumbprints are a jumbled and blurred. This is on my ipad.

    I have been saving photos that have been emailed to me on my ipad. They show up in the camera roll, but when I open the camera roll the thumbprints are jumbled and blurred and frozen. I can't get out of there unless I shut my ipad down and restart it. I can use other parts of my ipad ,but my camera roll remains frozen....help!

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).
    No data will be lost.

  • I cannot re-open files that have been saved in Numbers version09 - it states "You need a newer version of numbers to open this document". This is the latest version

    I cannot re-open files that have been saved in Numbers version09 - it states "You need a newer version of numbers to open this document". This is the latest version & also the one I have created/saved???

    Jules,
    You may delete Numbers 08 if you wish, but some folks like keeping it around. Close all your Numbers docs and Quit the Numbers app, and the other Numbers app if necessary.Then click the Numbers icon on your doc. Then select Numbers > About Numbers, and in the window that pops up, see which version it is. If the Dock icon started Numbers 08, you can cure that by dragging that icon off the Dock and letting it go in a puff of virtual smoke.
    Now, to put the Numbers 09 icon on the Dock, double-click one of those known Numbers 09 documents so that Numbers 09 starts up. Verify by checkig Numbers > about Numbers.
    Now click and hold the Numbers Dock icon and select the Option for Keep in Dock.
    Jerry
    Message was edited by: Jerrold Green1 -- I inadvertently posted about Pages rather than Numbers. Just corrected it.

Maybe you are looking for

  • I can't delete an mp3 with it's 'media kind' changed to podcast on my Ipod touch since the Itunes 11.4 update

    When I download long mp3 talk shows and place them on my Ipod touch I change their media kind to podcast to take advantage of the 2x speed and 30sec jump back. I have a smart playlist on my Ipod that shows all podcasts on the Ipod. Once I have listen

  • Material search by description

    Hi, we want to use TREX for material search from MM03  F4 search . we are able to search based on material no , EAN no  , but not with material description. I dont want to use full text search field because it do the search on other fields as well. L

  • FRM-40734 when calling external DLL Function from Forms 6

    Even though some answers were given to my previous help request ("Again: Forms 6 and user-defined data types") I wasn't able to solve the problem of passing a parameter of an user-defined type to an external DLL function residing in the SECURSIGN.DLL

  • VM in state Shutting down forever

    After a Live Migration one of my VMs was frozen. Manager still showed it as running. I chose "Power Off" for that VM in Manager and now it is stuck in state "Shutting down". I rebooted the server this VM was running on and restarted the manager but n

  • How to swf auto fit to screen when start

    how to swf auto fit to screen when start without any menu bar or window screen, i had use adobe flash player convert swf to ex, will fit to screen works in exe format?