File IO - help still needed

Im sorry, I know the forum abhors cross-posts...but i think
everyone has forgotten me...
please see...
http://forum.java.sun.com/thread.jsp?forum=54&thread=347108&start=30&range=30&hilite=false&q=
i am getting a numberformatExceptioin on 0002 (2nd record)
I know that the first 2 bytes contain something that shouldnt be there
PLEASE...
can you take a look,
(or have i stumbled upon a question no one knows the answer too?)

Displaying everything returned by the StringTokenizer? That should tell you what kind of trash it's returning when you are expecting a number. You're not returning the delimiter are you? Guessing without seeing it that you need to trim whitespace from around your number before parsing it to an Integer?

Similar Messages

  • Help still needed

    I still need help to get this script working.
    <?
    PHP Guestbook 1.1
    Written by Tony Awtrey
    Anthony Awtrey Consulting
    See http://www.awtrey.com/support/dbeweb/ for more information
    1.1.ora - Mar. 29, 2000
    - Version for Oracle by Kari Pannila
    kartsa@_NO_SPAM_ougf.fi
    1.1 - Oct. 20, 1999 - changed the SQL statement that reads data
    back out of the database to reverse the order putting the
    newest entries at the top and limiting the total displayed
    by default to 20. Added the ability to get the complete list
    by appending the URL with '?complete=1'. Added the code and
    additional query to count and list the total number of entries
    and included a link to the complete list.
    1.0 - Initial release
    This is the SQL statement to create the database required for
    this application.
    CREATE TABLE GUESTS (
    GUEST_ID NUMBER (4) NOT NULL,
    GUEST_NAME VARCHAR2 (50),
    GUEST_EMAIL VARCHAR2 (50),
    GUEST_TIME DATE,
    GUEST_MESSAGE VARCHAR2 (2000),
    PRIMARY KEY ( GUEST_ID )
    CREATE SEQUENCE GUEST_ID_SEQ
    START WITH 0
    INCREMENT BY 1
    MINVALUE 0
    NOCACHE
    NOCYCLE ;
    // This checks to see if we need to add another guestbook entry.
    if (($REQUEST_METHOD=='POST')) {
    // This loop removed "dangerous" characters from the posted data
    // and puts backslashes in front of characters that might cause
    // problems in the database.
    for(reset($HTTP_POST_VARS);
    $key=key($HTTP_POST_VARS);
    next($HTTP_POST_VARS)) {
    $this = addslashes($HTTP_POST_VARS[$key]);
    $this = strtr($this, ">", " ");
    $this = strtr($this, "<", " ");
    $this = strtr($this, "|", " ");
    $$key = $this;
    // This will catch if someone is trying to submit a blank
    // or incomplete form.
    if ($name && $email && $message ) {
    // This is the meat of the query that updates the guests table
    $query = "INSERT INTO guests ";
    $query .= "(guest_id, guest_name, ";
    $query .= "guest_email, guest_time, guest_message) ";
    $query .=
    "values(guest_id_seq.nextval,'$name','$email',SYSDATE,'$message')";
    // This is where we connect first time to the database
    $c1 = ocilogon("chukws","ikechi","orcl");
    $stmt = ociparse($c1,$query);
    OCIexecute($stmt,OCI_DEFAULT);
    OCIFreeStatement($stmt);
    OCICommit;
    } else {
    // If they didn't include all the required fields set a variable
    // and keep going.
    $notall = 1;
    ?>
    <!-- Start Page -->
    <HTML>
    <HEAD>
    <TITLE>Add a Message</TITLE>
    </HEAD>
    <BODY BGCOLOR="white">
    <H1>Add A Message</H1>
    <!-- Let them know that they have to fill in all the blanks -->
    <? if ($notall == 1) { ?>
    <P><FONT COLOR="red">Please answer all fields</FONT></P>
    <? } ?>
    <!-- The bits of PHP in the form allow the data that was already input
    to be placed back in the form if it is filled out incompletely -->
    <FORM METHOD="post" ACTION="koe.php">
    <PRE>
    Your Name: <INPUT
    TYPE="text"
    NAME="name"
    SIZE="20"
    MAXLENGTH="50"
    VALUE="<? echo $name; ?>">
    Your Email: <INPUT
    TYPE="text"
    NAME="email"
    SIZE="20"
    MAXLENGTH="50"
    VALUE="<? echo $email; ?>">
    Enter Message:
    <TEXTAREA NAME="message" COLS="40" ROWS="8" WRAP="Virtual">
    <? echo $message; ?>
    </TEXTAREA>
    <INPUT TYPE="submit" VALUE="Add">
    </PRE>
    </FORM>
    <HR>
    <?
    // This is where we count the number of entries.
    $c1 = OCIlogon("chukws","ikechi","orcl");
    $query = "SELECT COUNT(*) FROM guests";
    $stmt = OCIparse($c1,$query);
    OCIexecute($stmt);
    OCIFetch($stmt,OCI_DEFAULT);
    $numguest = OCIResult($stmt,1) ;
    ?>
    <!-- This is where we report the total messages. -->
    <P>
    <? echo $numguest[0]; ?> people have
    left me a message.
    </P>
    <?
    // This is where we decide to get all the entries or just the last 20.
    // This variable is set by just adding a '?complete=1' after the URL.
    $c1 = OCIlogon("chukws","ikechi","orcl");
    if ($complete == 1) {
    $query = "SELECT guest_name,guest_email,to_char(guest_time,'DD.MM.YYYY
    HH24:MI:SS'),guest_message FROM guests ORDER BY guest_time DESC";
    } else {
    echo "Here are the first 20:<BR><br>\n";
    $query = "SELECT guest_name,guest_email,to_char(guest_time,'DD.MM.YYYY
    HH24:MI:SS'),guest_message FROM guests WHERE ROWNUM<21 ORDER BY
    guest_time DESC";
    $stmt = OCIparse($c1,$query);
    OCIexecute($stmt,OCI_DEFAULT);
    // This will loop as long as there are records waiting to be processed.
    // Notice the plain HTML inside the while loop structure. PHP is
    flexable
    // enough to allow you to break into and out of the "code" at any point.
    // ------------------------ while start
    while (OCIFetchInto($stmt, &$guest)) {
    ?>
    <TABLE BORDER="1" WIDTH="700">
    <TR><TD>
    Name: <? echo $guest[0]; ?>
    </TD><TD>
    Email: ">
    <? echo $guest[1]; ?></A>
    </TD><TD>
    Time: <? echo $guest[2]; ?>
    </TD></TR>
    <TR><TD COLSPAN="3">
    <? echo $guest[3]; ?>
    </TD></TR>
    </TABLE>
    <BR>
    <?} // end while ?>
    </BODY>
    </HTML>
    Am getting the following error,
    Parse error: parse error, unexpected T_WHILE in d:\application\product\10.1.0\db_2\apache\apache\htdocs\koe.php on line 182
    Can CJJ and others please help. Thanks

    Replace your line <?} // end while ?> with
    <?} // end while
    ?>
    Regards,
    Torsten

  • Self Assigned IP - Fixed, but help still needed, please

    I'll add a bit of a back story first which I hope will help people understand my issue, but also hopefully lead people with a self-assigned IP issue to a fix (link is within the post)
    I’m on on an iMac 20″ Mid 2007. I recently updated to OSX Lion after having wifi connection issues in Leopard. I used to randomly get kicked off my wifi and given a self assigned IP. With Leopard, the issue was fixed by applying a manual IP, router address etc and restarting. The issue would return months later, but I got over it after a few tantrums.
    Then as soon as I updated to Snow Leopard, I instantly had no internet access and I could only upgrade to Lion if I downloaded system updates. So after a few hours of searching, I toggled my internet sharing ‘on & off’ and that was enough for that fix.
    But then I upgraded to Lion and again, no internet. And nothing worked for me at all, every fix on the internet I tried failed. If my airport ever managed to connect to my router I would get a self assigned IP. Or it would say it was connected but there was no internet. So I hunted for hours and eventually found this:
    Now, here is a fix for anyone who is having the same issue. I hope it works for you!
    http://www.davidpierron.com/index.php/archives/2009/04/13/289/
    This did work for me. The fix is to flush your ipfw through terminal, and it worked for me instantly.
    However, I now have another issue that I really hope people can help me with. It's not as annoying as the above, but my god it's still very annoying!
    Here are some bullets to show the tedious routine I have to go through in order to connect to the internet via my airport.
    • I turn on my mac and my it tries to connect to my router automatically. But after a minute of trying, it says it can’t connect.
    • I select my router manually from the list and have to enter my password manually, even though it is already saved in my Keychain.
    • It then connects and says, ‘Connected but no internet’, so I leave it for two minutes and throw things around the room.
    • After those 2 minutes it connects to the internet. But no, I can’t browse the web as the browser says 'DNS look up failure'.
    • So I open terminal, enter 'sudo ipfw flush' to flush my ipfw and BINGO, I’m online 5 minutes after logging on to my machine.
    The router I am using was only issued to me 8 months ago by my new ISP here in the UK, it connects via WEP and has always been stable for every other device I have connected to it. But I am going to ring up my ISP and see if there is a new router I can get.
    If anyone - ESPECIALLY APPLE who seem to be shying away from admitting there has ever been an airport wifi issue - has any information to advise me, then please let me know.
    Also if you are having a Self Assigned IP address issue and that fix above works, give the man some credit on his blog, and if you know him, give him a kiss from me!
    Thanks

    Update:
    I spoke to my ISP to see if they had any newer routers and if they did WPA now.
    I have a new router on its way and they have updated my router to do WPA!
    The result?
    I now connect to my router automatically after a restart. No issue there.
    However,
    It still can't find the internet when it first connects.
    I still have to wait 2 minutes for it to find the net.
    I still have DNS issues once connected
    I still have to flush ipfw before it works correctly.

  • Video help STILL needed ¬_¬

    I have the latest software. I have updated my Ipod and restored and all that kerfuffle and STILL my videos show up on my library but NOT on my ipod. Would some one like to help me please

    Connect your ipod and go to edit-->preferences Hit
    the iPod tab. Then hit the videos tab. What option is
    checked?
    btabz
    when i do that for mine, all the options are shaded out, and it's on don't update video...is there a way that i can change it? i've tried clicking the other 2 options, but it won't let me change it
      Windows 2000  

  • JSlider help still needed-mouse event

    Hi, I recently posted about help with the JSlider:
    http://forum.java.sun.com/thread.jspa?threadID=604119&tstart=45
    I am extending the JSlider and want to be able to move to a certain value by clicking on it. The methods people have posted before all involve calculating based on where the user clicks and slider min,max, and height, and are not very accurate with my slider (once you get to the middle, the clicking is off by one value). I need a way to do this more accurately. Is there anyone who could help me? I have also heard there would be a way to rebuild the JSlider completely myself, and that I could then configure it how I need to. While this would be a hassle, it may be my only option, so any help with that would be appreciated. Thanks!

    I just had another look at this, and if you use the trackwidth instead of the sliderwidth,
    and factor in the difference between their starting points, it works perfectly.

  • Kernel 2.6.30 and ext4 file systems - nodelalloc still needed?

    Is it true that one does not need the nodelalloc switch in the /etc/fstab to prevent data loss due to an ungraceful reboot/shutdown of an ext4 partition under the new 3.6.30 kernel?

    You shouldn't need nodelalloc, yes.
    ext4 2.6.30 has code in it that hacks around the most common problems with apps that write data assuming the filesystem exhibits ext3-like behavior. But it's up to you -- if you didn't notice any performance loss, why not keep it?

  • Installation help still needed Bundle 13

    I have spent the better part of 2 weeks downloading & getting nowhere.  I've spent 10/21, 10/22 & 10/27 trying to get Chat help to no avail. I have at least 1 case number # 0186024139 but no one to give it to. 10/19 I first did the download with Akamai, it took hours, then "Installer failed to initialize.  Download support adviser”.  When I click & go to the page it said the support adviser is no longer available! 10/20/14 I did as I was told & went to the download trial http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=en&promoid=DJDV B, left the computer on all night downloading the Elements bundle, using the older installer, only to discover once again the "Installer failed message" and I already know that the support adviser is no longer available!
    10/28 - 11/1 - I tried: “Be sure you are removing any bits of the failed installations, then try downloading from here: Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools It's an adobe-sanctioned site, but you must follow the Very Important Instructions, even when they don't seem right.” I removed everything I could find, printed out the instructions, page, turned off the security program, downloaded, I had such hopes, everything seemed fine,.then tried to install only to get then  "Installer failed to initialize.  Download support adviser”, again.  When I click & go to the page it said the support adviser is no longer available! So what do I do NOW????  It’s been 11 days, please send help!    I'm ready to give up!!!
    Thank you for your time!

    Hi,
    Sorry for the inconvenience. Please upgrade the Adobe Application Manager on your machine
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Install the above mentioned exe on your machine and then try to install E13.
    Thanks,
    Shikha

  • Help Still needed, before I BIN FX5200

    Can anyone recommend the best drivers for WIN98/fx5200 128 graphics card. My current drivers downloaded form Nvidia(44.03_win9x) only seem to allow certain features to work.
    Also since I installed the card my system has started to freeze occasionally. This also happend when I was using win xp pro and the correct MSI setup cd.
    System Spec:
    Win98,
    P3 500MHz
    PC100 Systemboard/slot 1/ Socket 370
    256mb sdram
    Unknown PSU.
    Thanks.
    Tom.

    Thank`s for the help Guys, this is a list of IRQs:
    0   System timer
    1   Standard 101/102-Key or Microsoft Natural Keyboard
    2   Programmable interrupt controller
    3   Communications Port (COM2)
    4   Communications Port (COM1)
    5   CMI8738/C3DX PCI Audio Legacy Device
    6   Standard Floppy Disk Controller
    7   EPSON Printer Port (LPT1)
    8   System CMOS/real time clock
    9   ALi PCI to USB Open Host Controller
    9   IRQ Holder for PCI Steering
    9   IRQ Holder for PCI Steering
    10   NVIDIA GeForce FX 5200
    10   IRQ Holder for PCI Steering
    11   CMI8738/C3DX PCI Audio Device
    11   IRQ Holder for PCI Steering
    12   PS/2 Compatible Mouse Port
    13   Numeric data processor
    14   Primary IDE controller (dual fifo)
    14   ALi M5229 PCI Bus Master IDE Controller
    15   Secondary IDE controller (dual fifo)
    15   ALi M5229 PCI Bus Master IDE Controller
    Even a newbie like me can see there are loads of conflicts, but that`s as far as my limited knowledge takes me. The entry "IRQ Holder for PCI Steering" has caused conflicts since I got the system, I don`t even know what it is or how to get rid!
    My Os is win98. My motherboard will only upgrade to 600MHz.
    I could stick some more ram in if it will help,  I have just spent over £140 on the Graphics card and WinXP pro, I would prefer not to shell out anymore.
    PSU= Cortek-LC200,120v/6a,240v/3.5a.
    Thank`s.
    Tom.

  • Email help still needed please

    In my set up wizard, for email, I have only 2 options:
    1.  i want to use a work email account with a Blackberry Enterprise Server
    2. I want to skip email set up.
    How do i therefore access email setup?
    I have a Pearl 8120.
    Thanks for help

    Welcme to the Frums!
    Do you have BIS or BES? 
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • Still need help :( loading outside files in actionscript

    Ive been all over the forums online trying to get this
    problem fixed and no one has really settled it for me (its been
    MONTHS)
    So I'm going to attempt to be as in depth as possible and
    post code as well.
    Heres the deal- its a portfolio site, www,darrenlasso.com
    The problem is when i load multiple swf files into levels.
    When i first call on an outside swf from a button inside the main
    file the code looks something like this:
    on(release){
    _level1._visible=false;
    loadMovieNum("cover.swf", 1);
    cvrbtn._visible = false
    acibtn._visible = false
    When from inside THAT file, I want to return back to the MAIN
    navigation file, the code looks more like this:
    on(release){
    mcl.addListener(mclListener);
    mclListener.onLoadInit = function(mc:MovieClip){
    mc._visible=true;
    mc.gotoAndPlay(76);
    _level1._visible=false;
    mcl.loadClip("darnen.swf", 1);
    Ive messed around with the code so many times now trying
    everyones different suggestions that i dont even know if that is
    the code I have live right now but i know its not working how i
    want it to. The problem seems to be that i can only load into level
    1, and when i do that, going between these various calls on outside
    files there is a 'flicker' of a frame or two of the OLD previously
    loaded file that will play BEFORE the new one initiates. As this is
    a portfolio site it needs to be polished so i can't have stuff like
    this plaguing it. Its been unfinished for months now because i just
    can't figure it out. Please please help me if you can.. hopefully
    you like a challenge because i just havent been able to get the
    help i need from anywhere else :/

    when i load the swf from outside, i want it to then be able
    to return to the main navigation file which i guess would be level
    0. So does that mean that the code for buttons navigating back to
    the main flash file would be more like:
    on(release){
    mcl.addListener(mclListener);
    mclListener.onLoadInit = function(mc:MovieClip){
    mc._visible=true;
    mc.gotoAndPlay(76);
    _level1._visible=false;
    mcl.loadClip("darnen.swf", 0);
    As i load in all these different files from outside I've been
    loading them all into level 1 because that seems to be the only way
    to get them to display at all with the code I'm using. I assume it
    might be better to load them all into individual levels? I'm not
    sure. I'm still just kinda learning AScript as i go along..

  • I need to compress an InDesign file to web-quality pdf but file size is still too big. Help!

    I need to compress an InDesign file to web-quality pdf but file size is still too big. Help!

    Hi Bill,
    It sounds like your document has a lot of pages and/or images in it.
    Instead of using the normal InDesign > Export command to create a PDF, you may be able to reduce the file size by printing to a PostScript file, then distilling it to PDF using Acrobat Distiller.

  • I had to remove Mavericks and do a reinstall on 10.8.5 but still need help...

    I have been trying to undo my Mavericks upgrade in October and after considerable effort I am mostly got back to 10.8.5 OS but still need a bit of help. I just want the previous OS back in place then I'll try Mavericks soon....
    1)               I never seem to pay attention so is 10.8.5 the last OSX prior?  As long as it isn't Mavericks, I want to get it installed.
    2)               I had to reformat my iMac so I have a residual elements from 10.9 and one issue that I had before was permissions. Every number of files either on other hard drives or sometimes in my same user folder was asking for permission and authentication to simply move a file.. A popular one you'll see at the bottom the person/whatever/ problem known as fetching.  Could someone just give me the general reason of this fetching and permissions problem that I ran into?  Better yet since I just want to avoid it altogether into the future tell me what's the best way to assure it disappears forever.
    3)          Another, which is kind of a big ticket item for me is the backup/restore/cover your (!!!) system. I was a good little iMac User and had Time Machine backed up for a period prior to the Mavericks install. I'm a little bit upset that TM isn't 100%....but what is...?  I need another backup/restore system in place and that's what I am looking for recommendations on.  An item that saved me a bit was that I had OS 10.8.3 on an external hard drive.  The problem with that one was it was on a partition, on one of the drives requiring to be reformatted.  It worked as a bridge consolidating files and all but was a big headache as a partition on the external. Recovery Disk did it's part but wasn't enough as well.   Is there a simple/easy idea...clone, disk images, boot from an external drive… ?
    4)          iPhoto (9.4.3) currently will not open the libraries which iPhoto (9.5) converted. Is there way to go back?  Seems the App Store and Software update don't like something. I'm getting into a loop with App Store, iPhoto and the OS. Either the software needs operating system ... then the App Store says it's incompatible or some other complaint.  Right now I have 9.4.3 iPhoto installed for OSX 10.8.5 and was only able to create a new library and the converted ones currently do not open.
    Thanks to your help

    10.8.5 is the lates ML edition.  I use TM and also carbon copy cloner as my second backup.  If I were you and you have a TM backup prior to Mavericks I would try another restore at bootup.  You should erase your drive first in that process using disk utitlites and then use TM to put back you apps and files.  The other choice is to do an internet recovery and then use TM to restore your apps and files.  That should fix the permissions issue.  I did the same thing and all was OK including getting my original iPhoto progam (9.4.3), iphoto11 and photos back.

  • HT1766 How can I backup the iPad to the non-C drive of the computer that runs the itune?   I have already setup the library at a NAS and seems only media file are stored int he library.  iPad backup still need to take use my C: drive that is running out o

    How can I backup the iPad to the non-C drive of the computer that runs the itune?   I have already setup the library at a NAS and seems only media file are stored int he library.  iPad backup still need to take use my C: drive that is running out of space

    Windows - Change iPad default backup location
    http://apple-ipad-tablet-help.blogspot.com/2010/07/change-ipad-default-backup-lo cation.html
    Windows - Changing IPhone and iPad backup location
    http://goodstuff2share.wordpress.com/2011/05/22/changing-iphone-and-ipad-backup- location/
     Cheers, Tom

  • How do i make a still image (photo) fit the length of the music? I record music and want to put the tracks to a video file with a still image of my business logo in the background. Any help?

    How do I make a still image (photo) fit the length of the music? I record music and want to convert the tracks to a video file with a still image of my business logo in the background. On windows movie maker you could just select "fit to music" but this program isnt as easy to figure out! Any help?

    Double-click on the still image in the project timeline to open the Inspector. In the Inspector, adjust the duration by typing in a new duration to match the length of your music. I think the limit for a still image is 10 minutes. If you need more than this, simply drag the image into the timeline again then adjust its duration. The two images will play seamlessly (no gap will be visible).
    See this iMovie Help topic:
    http://help.apple.com/imovie/#mov3a883915
    You can achieve more precision when entering durations by changing a preference in the menu item iMovie Preferences. Check (tick) the preference for Show Time As HH:MM:SS:frames. This will enable you to enter the duration of stills down to the frame level, rather than full seconds (NTSC is 30 frames per second; PAL is 25 fps). When entering times, type a colon between each time segment, such as 2:50:15, which represents 2 minutes 50 seconds and 15 frames. For 5 seconds 20 frames you would enter 5:20 and so forth.
    Note that the music will only run to the length of the video in the timeline (in your case, the still images). So, after increasing the stills duration you will need to drag the end of the music track as far as required. The stills can be dragged inwards to reduce the duration if necessary.
    John
    Message was edited by: John Cogdell - added Note

  • Still need help with case sensitive strings

    Hello guy! Sorry to trouble you with the same problem again,
    but i still need help!
    "I am trying to create a scrypt that will compare a String
    with an editable text that the user should type to match that
    String. I was able to do that, but the problem is that is not case
    sensitive, even with the adobe help telling me that strings are
    case sensitive. Do you guys know how to make that comparison match
    only if all the field has the right upper and lower case letters?
    on exitframe
    if field "t:texto1" = "Residencial Serra Verde"then
    go to next
    end if
    end
    |----> thats the one Im using!"
    There were 2 replys but both of them didnt work, and the
    second one even made the director crash, corrupting even previously
    files that had nothing to do with the initial problem..
    first solution given --
    If you put each item that you are comparing into a list, it
    magically
    makes it case sensitive. Just put list brackets around each
    item.
    on exitframe
    if [field "t:texto1"] = ["Residencial Serra Verde"] then
    go to next
    end if
    end
    Second solution given--
    The = operator is not case-sensitive when used on strings,
    but the < and > operators are case-sensitive.
    So another way to do this is to check if the string is
    neither greater than nor less than the target string:
    vExpected = "Residencial Serra Verde"
    vInput = field "t:texto 1"
    if vExpected < vInput then
    -- ignore
    else if vExpected > vInput then
    -- ignore
    else
    -- vExpected is a case-sensitive match for vInput
    go next
    end if
    So any new solutions??
    Thanks in advance!!
    joao rsm

    The first solution does in fact work and is probably the most
    efficient way
    of doing it. You can verify that it works by starting with a
    new director
    movie and adding a field named "t:texto1" into the cast with
    the text
    "Residencial Serra Verde" in the field. Next type the
    following command in
    the message window and press Enter
    put [field "t:texto1"] = ["Residencial Serra Verde"]
    You will see it return 1 which means True. Next, make the R
    in the field
    lower case and execute the command in the message window, it
    will return 0
    (true).
    Now that you know this works, you need to dig deeper in your
    code to find
    what the problem is. Any more info you can supply?

Maybe you are looking for

  • IPod clock and daylight savings time...

    I've missed a lunch appointment today because of my iPod!! It looks like a bug to me. I arrived in SFO from South Africa and used my iPod clock this morning - it turned out to be an hour slow. When I looked at the clock, I saw that 'daylight saving'

  • Installing Flash Player - Windows Vista Home Premium - stalled at 50%

    I would like to get help as I have been trying to install Adobe Flash Player for months, each time a video I select requires it and the system takes me to the prompts to install, it gets 50% installed and then it says it can't continue because Intern

  • Cannot load external Oracle JDBC driver in JEE5 server

    Hi experts, I installed CE 7.1 SP3 downloaded from SDN.  I developed a EJB using JPA and wanted to connect an external Oracle 10 database.  I firstly tried to create a JDBC driver resource in NetWeaver Adminstrator (nwa).  The nwa page showed that lo

  • Flash Drive folder settings keep changing

    When I insert a flash drive, I set the folder window sizes, view (icon, list) etc. When I eject the drive, and reinsert it, it will not remember the settings. I never had this problem before with previous Mac computers, so it must have something to d

  • Regarding Inquiry

    Hi, I am creating an inquiry with order type ZIN (copy of IN). I have maintained alt sales doc type as 'sales order' doc (type OR). The issue is - Inquiry is saved. Then in change mode (va12) when I select the alt doc type I am getting following mess