CE505 boot problem. Help needed, ASAP

One day old (still rocks! :)) working CE-505 stop booting with:
--- boot msg ---
Press any key to stop auto-boot...
0
auto-booting...
boot device (flash,net) [ net]:
file name [ ce505-cache-231.bin]:
cache IP address [ 192.168.0.99]:
IP network mask [ 255.255.255.0]:
server IP address [ 192.168.0.10]:
protocol (rcp,ftp,tftp) [ tftp]:
flags [ 0]:
Loading from the network
Attaching network interface fei0... done.
Attaching network interface lo0... done.
Loading... Starting at 0x108000...
#!ImageInfo
# +--------------------+
# | CISCO CE image |
# +--------------------+
SUPPORTED_PRODUCTS=CE505,CE550
UNCOMPRESSED_CKSUM=0xf17c87d3
UNCOMPRESSED_SIZE=0x3578b8
COMPRESSED_CKSUM=0xd6ab0b3
COMPRESSED_SIZE=0x167cdb
This image supports models CE505,CE550 and this appliance is a 00000.
Press any key to stop auto-boot...
--- boot msg ---
And start timer again :( I tryed booting from network because flash boot fails similar above. I see IOS booting message and then boot counter again :(
Can any one help me with this issue?
P.S. Sorry for my english.

It's me again with another CE 505. I van't understand what happens, but one day flash boot fail and i try to boot from network:
auto-booting...
boot device (flash,net) [ net]:
file name [ ce505-cache-251.bin]:
cache IP address [ 10.10.10.120]:
IP network mask [ 255.255.255.0]:
server IP address [ 10.10.10.10]:
protocol (rcp,ftp,tftp) [ tftp]:
flags [ 0]:
Loading from the network
Attaching network interface fei0... done.
Attaching network interface lo0... done.
Loading... image read failed: Image is not for x86 CPU: errno=0x16
Error loading file: errno = 0x31.
Can't load boot file!!
Why CE can't boot? I downloaded image from anothe working CE
Thank you.

Similar Messages

  • 9i Developer suite login problem. help needed ASAP

    i installed oracle 9i developer suite, my problem is i can't login. this is the error ora12560: TNS: oracle adapter error.
    or
    if i put the hostname it displays a no listener error and closes. i tried to create a listener in net configuration assistant, but i can't see it in services.
    i'm using windows XP. and not conneted to any machine.
    do i need any changes on my window settings?
    please help...
    thanks
    here is my listener.ora
    ABC =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\OraHome)
    (PROGRAM = extproc)
    tnsnames.ora
    TEST.ABC =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ABC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = test.ABC)
    ORACLE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oracle)

    check your operating system network protocole is TCP/IP is installed if so check is there any problem with these protocoles. this error is encounter generally due operating system network protocoles it is not an oracle error. here is discription.
    TNS-12560 TNS:protocol adapter error
    Cause: A generic protocol adapter error occurred.
    Action: Check addresses used for proper protocol specification. Before reporting this error, look at the error stack and check for lower level transport errors.For further details, turn on tracing and re-execute the operation. Turn off tracing when the operation is complete.

  • SQL problem - help needed ASAP!!

    Hey guys,
    Doing a college project... would really appreciate some help. I am trying to use a variable in the where clause of a select cursor in PL/SQL. The code is this:
    procedure results(p_search_entry varchar2, p_search_field varchar2) is
    cursor c_results is
    select * from physics_b where p_search_field = p_search_entry;
    begin
    for cv_results in c_results
    loop
    -- loop through actions
    end loop;
    The problem is that I don't know how to get the where clause to accept the variable passed into the procedure as the field name. Does anyone know the syntax for this?
    Thanks very much!
    Niall

    This isn't the correct forum for this kind of question. The SQL and PL/SQL forum PL/SQL is probably best.
    That said, you can't do what you want that way.
    You can do
    procedure results (p_search_entry in varchar2)
    cursor c_result is
    select * fro physics_b where subject=p_search_entry;(assuming subject is a column in physics_b)
    You can't use a variable to represent a column directly. You need to build the statement as a string and then use execute immediate.
    statement:='select * fro physics_b where '||p_search_field||' = :1';
    -- this bit is probably bad syntax.
    execute immediate statement using p_search_entry;Look up execute immediate and bind variables

  • Help needed asap! Will my IPAD 3G wifi work in another country with the sim of a 3G services provider?

    Help needed asap! I want to buy an IPAD 3G + Wifi before I return to my country from the US. The problem is that I have GSM service providers in my country that provide 3G services but I am wondering if their SIM card would work in the IPAD? In other words, can I get an unlocked IPAD 3G wifi? Thanks for helping out

    The AT&T 3G iPads (which are GSM/sim based) in the US are not locked (the Verizon models are CDMA based so they effectively are). So as long as you can get a sim in your own country you shouldn't have a problem

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Blackberry Storm Problems..​.Help Needed ASAP

    Soooo...for some strange reason i bought a BB Storm : /  when i got it (yesterday), i charged it and it charged up fine. but the battery ran down rather quickly. So i am now tryin 2 charge it up again and it is not giving one bit of charge. i just left it for 3 hours and came back to check it and it went dead...i did a battery pull twice and still nothing. what is my next move???

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain connected to a known-good wall charger (not PC USB):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain a known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • HELP Needed ASAP! Curve Not Turning On, Red Flashing Lights!

    Hi,
    I have a Blackberry curve 8310. I plugged my curve into my mac to do a software update. Midway through, my phone shut off and hasn't worked since. The battery is fully charged. The phone is off and won't turn on. Additionally, there is a red LED light blinking twice every few seconds. I think I found an article on blackberry.com's knowledge database that diagnosed my issue, but my problem now is that because the curve isn't turning on/off, it's not connecting to my mac's desktop manager. So I can't do anything the article tells me to do. What should I do now? I need help ASAP!
    Here's the link to the article: http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB19915
    Thanks in advanced!

    Hello Asmro and welcome to the BlackBerry Support Community Forums.
    It can take up to 30 minutes for the Mac to connect to the BlackBerry.
    I would remove your battery and connect to the BlackBerry Desktop Manager. Once it comes up there is no software installed, re-insert the battery and follow the article KB19915.
    Let me know how you make out.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • HT4623 iphone 3 restore help needed asap

    Hi,
    See below print screem of problem I am having, iphone 3 is in restore mode and i have trird everything I have been advised to.
    \error 6025
    2012-09-27 22:36:11.015 [1012:120c]: restore library built Aug 11 2012 at 16:32:14
    2012-09-27 22:36:11.015 [1012:120c]: iTunes: iTunes 10.7.0.21
    2012-09-27 22:36:11.015 [1012:120c]: iTunes: Software payload version: 8C148
    2012-09-27 22:36:55.604 [1012:aec]: iTunes: Specifying UOI boot image
    2012-09-27 22:36:55.610 [1012:aec]: requested restore behavior: Erase
    2012-09-27 22:36:55.611 [1012:aec]: requested variant: Erase
    2012-09-27 22:36:55.625 [1012:aec]: *** UUID 6729FE47-231E-B74A-B26A-EE2F3B282E46 ***
    2012-09-27 22:36:55.667 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    2012-09-27 22:36:55.668 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 06D3B9F0 [71048078]>{length = 20, capacity = 20, bytes = 0x9eba4b1152ef0493161c31d5cade4ae26ec4d01b}"
    2012-09-27 22:36:55.668 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 06D40E78 [71048078]>{length = 20, capacity = 20, bytes = 0xe1c1d64ae4a66c446fe5a2ea91a8de3462a9cbf3}"
    2012-09-27 22:36:55.669 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 06D3C698 [71048078]>{length = 20, capacity = 20, bytes = 0xffe4fd533832ec121bf356ca1143e360972d4190}"
    2012-09-27 22:36:55.669 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 06D3EFB0 [71048078]>{length = 20, capacity = 20, bytes = 0x7b7645b89389219cfb4de5257fec59b67237d8aa}"
    2012-09-27 22:36:55.703 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 06D3DA98 [71048078]>{length = 20, capacity = 20, bytes = 0xffe4fd533832ec121bf356ca1143e360972d4190}"
    2012-09-27 22:36:55.704 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 06D430D8 [71048078]>{length = 20, capacity = 20, bytes = 0x8be30a8b298e36866e05eee57538430dc60af012}"
    2012-09-27 22:36:55.705 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 06D3C648 [71048078]>{length = 20, capacity = 20, bytes = 0x7c27972b0539fbdacfed19f6cbf3bba92eaa4f13}"
    2012-09-27 22:36:55.716 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 06D3F4B0 [71048078]>{length = 20, capacity = 20, bytes = 0x67814c9641a3a8c28fa800b6c3f753590aed60db}"
    2012-09-27 22:36:55.716 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 06D39B28 [71048078]>{length = 20, capacity = 20, bytes = 0xe1c1d64ae4a66c446fe5a2ea91a8de3462a9cbf3}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 06D3CE40 [71048078]>{length = 20, capacity = 20, bytes = 0xa622ccd2cbc8406da1757d19212cacc6f856eb4d}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging" Digest = "<CFData 06D3DA20 [71048078]>{length = 20, capacity = 20, bytes = 0x8ae3e48d62cd8a83287c8133a195637c908458b2}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 06D41E68 [71048078]>{length = 20, capacity = 20, bytes = 0x9eba4b1152ef0493161c31d5cade4ae26ec4d01b}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 06D3AAC8 [71048078]>{length = 20, capacity = 20, bytes = 0xea5805db544407d49475a4584e6c3af3bc97cd0f}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 06D42700 [71048078]>{length = 20, capacity = 20, bytes = 0x50dd3114f4b9a3bb9c18589bfc5a300e35335f5f}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 06D42278 [71048078]>{length = 20, capacity = 20, bytes = 0x64c7eb75bfdf1c0ff50ff17851c37918316eeed8}"
    2012-09-27 22:36:55.719 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 06D406D0 [71048078]>{length = 20, capacity = 20, bytes = 0xa21af5e198d8dccd00bea4bfa47b26c771a0716b}"
    2012-09-27 22:36:55.719 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 06D3D728 [71048078]>{length = 20, capacity = 20, bytes = 0x4a515ecc484322448d261b13499bfb4002f66b96}
    2012-09-27 22:36:55.721 [1012:aec]: amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    2012-09-27 22:36:55.812 [1012:aec]: amai: tss_submit_job: HttpQueryInfo returned 200
    2012-09-27 22:36:55.823 [1012:aec]: amai: AMAuthInstallRequestSendSync: received tss response (server version: 0.6.30-b2)
    2012-09-27 22:36:56.280 [1012:1580]: iBoot build-version = iBoot-931.71.16
    2012-09-27 22:36:56.281 [1012:1580]: iBoot build-style = RELEASE
    2012-09-27 22:36:56.298 [1012:1580]: unable to open device_map.txt: No such file or directory
    2012-09-27 22:36:56.300 [1012:1580]: found device map entry for 0x00008900 0x00000004. boardConfig=n82ap platform=s5l8900x
    2012-09-27 22:36:56.301 [1012:1580]: _AMRestoreCreateCFDataWithContentsOfFile: CreateFileA failed: 2
    2012-09-27 22:36:56.301 [1012:1580]: unable to create data from file: 17
    2012-09-27 22:36:56.301 [1012:1580]: device_map.plist file not found
    2012-09-27 22:36:56.302 [1012:1580]: AMDeviceIoControl: GetOverlappedResult failed
    Can anyone help,  i have tried all youtube videos, all apple advice, I am at a loss
    Thanks
    Sam

    unfortunately if its not working you need a update from apple or a update from the manufacturer there has been a lot of complaints about car stereos not working with the iPhone 4 and it def has something to do with the software that apple is shipping there is no magic application or magic setting that is going to change this sorry

  • Laptop crashed only LCD light comes on, but it starts up normal. HELP NEEDED ASAP

    I was typing an assignment when my pc suddenly froze and produced this loud noise, which lasted for about 30sec. It then went to a bright blue screen telling me my PC has crashed and will restart soon. It loaded to 100% then restarted, but the screen came up black; only the LCD light is present. It runs normal as the screen blinks as it would after the HP screen loads on boot up, and all the lights are on. Furthermore, I use the finger print scan to log in and it works as I can hear my Skype login. I tried the hard reset and nothing. I tried HDMI and it worked. However, I foolishly uninstalled the graphics from device manager thinking that it would reinstall upon reboot and solve my problem: it didn't. Now I have a blank screen and I can't use HDMI as I uninstalled the graphics thing. When I press f4 the screen doesn't do anything, it doesn't source to external physically output. I can't even adjust screen brightness anymore and I previously could before I deleted the graphics. I am out of ideas. Please help me. My assignment is due a day from now and I need to complete it. :cry: 

    Update. I was able to use Windows narrator to enable the graphics an  now I have HDMI access again. I am currently using my T.V. as monitor to get my work done. If anyone can tell me what to do about the blank screen it would be greatly appreciated.

  • Satellite L305D-S593​4 Boot Problems - HELP!

    I'm sure this question has been asked, or I could find the information elsewhere, however, I'm neither computer savvy nor patient enough to look for this info. Therefore, I need some help with a problem on my Satellite L305D-S5934 laptop. When I "power-up" the unit, I get this Windows Boot Manager message:
    Windows has encountered a problem communicating with a device connected to your computer.
    This error can be caused by unplugging a removable storage device such as an external USB drive while the device is in use, or by faulty hardware such as a hard drive or CD-ROM drive that is failing. Make sure any removable storage is properly connected and then restart your computer.
    If you continue to recieve this erroe message, contact the hardware manufacturer.
               File:  \Boot\BCD
               Status:  OxcOOOOOe9
               Info:  An unexpected I/O error has occured.
    ENTER=Continue                                    ​                                                  ​                                      ESC=Exit
    Every time I get to this point, and then hit enter to continue, it acts like it might boot up, then it goes blank. I don't know a lot about computers. We've had this laptop for roughly 6-7 weeks now, and haven't had a problem. We've never used a portable storage device on it, ever, and it is used for nothing more than my wife on Facebook, and checking e-mail and IMDB while watching movies. Basically a play computer while watching TV. It worked fine until last Wednesday, then it just did this after shutting down one night. Any help would be greatly appreciated. Thank you very much!

    Satellite L305D-S5934 
    See this Toshiba document. 
      How to launch the Windows Recovery Environment
    In that System Recovery Options menu, first try Startup Repair.
    If that doesn't work, try System Restore.
    Otherwise, follow the instructions in this Microsoft document.
    How to use the Bootrec.exe tool in the Windows Recovery Environment to troubleshoot and repair start...
    -Jerry

  • PT880 - Boot problems; Help!

    I am building/have built a computer from scratch and the computer refuses to boot.  Usually the computer will spin up but the screen won't turn on,  or if I reser the cmos it will sucessfully boot to its bios, but then crash just the same on save/restart.  Other times it will just show a blank screen with the flashing input bar.  Help?
    p4 3.2 w/HT
    DDR 512mb 3200 (Kingston Hyper X series)
    80gb Maxtor HDD
    CD-RW/DVD-ROM Drive
    Radeon 9800 pro 128
    PT880 Neo
    Help?

    Quote
    Originally posted by Del UK
    Phishingtime,
    What errors did bios 1.9 fix for you??????? You keep saying 1.9 fixed??????
    Did 1.9 fix the dual v quad channel mem problem????DualStream64™ - Dual Channel DDR400/333/266 w/ECC
    Del
    What's your problem? You don't think a BIOS update can fix memory errors, or BSOD/reboot? It does not matter to me because I know what I know........
    If you look at a few of my other posts you will see. I do not feel the need to repeat myself and do not want to relive it. I only have about 20 posts ya know.
    And by the way, the one that actually fixed my problems was BIOS 1.6, and then MSI released 1.9 a couple of days later. I am just trying to help others so they do not have to go through what I went through.
    BIOS 1.7 which shipped with my new board was very unstable to say the least. 1.9 is the latest and works well, (wish I had a previousely tested BIOS) so I was just updating that 1.9 should hopefully work for other similar setups and errors.
    p.s. Jeeeez, I can't believe you just made me explain all of that!!!!!!!!!!

  • Linked lists problem -- help needed

    Hello again. I've got yet another problem in my C++ course that stems from my use of a Mac instead of Windows. I'm going to install Parallels so I can get Windows on my MacBook and install Visual Studio this week so that I don't have to deal with these discrepancies anymore, but in the meanwhile, I'm having a problem here that I don't know how to resolve. To be clear, I've spent a lot of time trying to work this out myself, so I'm not just throwing this up here to have you guys do the work for me -- I'm really stuck here, and am coming here as a last resort, so I'll be very, very appreciative for any help that anyone can offer.
    In my C++ course, we are on a chapter about linked lists, and the professor has given us a template to make the linked lists work. It comes in three files (a header, a source file, and a main source file). I've made some adjustments -- the original files the professor provided brought up 36 errors and a handful of warnings, but I altered the #include directives and got it down to 2 errors. The problematic part of the code (the part that contains the two errors) is in one of the function definitions, print_list(), in the source file. That function definition is shown below, and I've marked the two statements that have the errors using comments that say exactly what the errors say in my Xcode window under those two statements. If you want to see the entire template, I've pasted the full code from all three files at the bottom of this post, but for now, here is the function definition (in the source file) that contains the part of the code with the errors:
    void LinkedList::printlist( )
    // good for only a few nodes in a list
    if(isEmpty() == 1)
    cout << "No nodes to display" << endl;
    return;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->name; } cout << endl; // error: 'setw' was not declared in this scope
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->test_grade; } cout << endl; // error: 'setw' was not declared in this scope
    As you can see, the problem is with the two statements that contain the 'setw' function. Can anyone help me figure out how to get this template working and get by these two errors? I don't know enough about linked lists to know what I can and can't mess with here to get it working. The professor recommended that I try using 'printf' instead of 'cout' for those two statements, but I don't know how to achieve the same effect (how to do whatever 'setw' does) using 'printf'. Can anyone please help me get this template working? Thank you very, very much.
    For reference, here is the full code from all three files that make up the template:
    linkedlist.h (header file):
    #ifndef LINKED_LINKED_H
    #define LINKED_LINKED_H
    struct NODE
    string name;
    int test_grade;
    NODE * link;
    class Linked_List
    public:
    Linked_List();
    void insert(string n, int score);
    void remove(string target);
    void print_list();
    private:
    bool isEmpty();
    NODE *FRONT_ptr, *REAR_ptr, *CURSOR, *INSERT, *PREVIOUS_ptr;
    #endif
    linkedlist.cpp (source file):
    #include <iostream>
    using namespace std;
    #include "linkedlist.h"
    LinkedList::LinkedList()
    FRONT_ptr = NULL;
    REAR_ptr = NULL;
    PREVIOUS_ptr = NULL;
    CURSOR = NULL;
    void Linked_List::insert(string n, int score)
    INSERT = new NODE;
    if(isEmpty()) // first item in List
    // collect information into INSERT NODE
    INSERT-> name = n;
    // must use strcpy to assign strings
    INSERT -> test_grade = score;
    INSERT -> link = NULL;
    FRONT_ptr = INSERT;
    REAR_ptr = INSERT;
    else // else what?? When would this happen??
    // collect information into INSERT NODE
    INSERT-> name = n; // must use strcpy to assign strings
    INSERT -> test_grade = score;
    REAR_ptr -> link = INSERT;
    INSERT -> link = NULL;
    REAR_ptr = INSERT;
    void LinkedList::printlist( )
    // good for only a few nodes in a list
    if(isEmpty() == 1)
    cout << "No nodes to display" << endl;
    return;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->name; } cout << endl; // error: 'setw' was not declared in this scope
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    { cout << setw(8) << CURSOR->test_grade; } cout << endl; // error: 'setw' was not declared in this scope
    void Linked_List::remove(string target)
    // 3 possible places that NODES can be removed from in the Linked List
    // FRONT
    // MIDDLE
    // REAR
    // all 3 condition need to be covered and coded
    // use Trasversing to find TARGET
    PREVIOUS_ptr = NULL;
    for(CURSOR = FRONT_ptr; CURSOR; CURSOR = CURSOR-> link)
    if(CURSOR->name == target) // match
    { break; } // function will still continue, CURSOR will
    // mark NODE to be removed
    else
    { PREVIOUS_ptr = CURSOR; } // PREVIOUS marks what NODE CURSOR is marking
    // JUST before CURSOR is about to move to the next NODE
    if(CURSOR == NULL) // never found a match
    { return; }
    else
    // check each condition FRONT, REAR and MIDDLE
    if(CURSOR == FRONT_ptr)
    // TARGET node was the first in the list
    FRONT_ptr = FRONT_ptr -> link; // moves FRONT_ptr up one node
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    }// why no need for PREVIOUS??
    else if (CURSOR == REAR_ptr) // TARGET node was the last in the list
    { // will need PREVIOUS for this one
    PREVIOUS_ptr -> link = NULL; // since this node will become the last in the list
    REAR_ptr = PREVIOUS_ptr; // = REAR_ptr; // moves REAR_ptr into correct position in list
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    else // TARGET node was the middle of the list
    { // will need PREVIOUS also for this one
    PREVIOUS_ptr -> link = CURSOR-> link; // moves PREV nodes' link to point where CURSOR nodes' points
    delete CURSOR; // deletes and return NODE back to free memory!!!
    return;
    bool Linked_List::isEmpty()
    if ((FRONT_ptr == NULL) && (REAR_ptr == NULL))
    { return true; }
    else
    { return false;}
    llmain.cpp (main source file):
    #include <iostream>
    #include <string>
    #include <iomanip>
    using namespace std;
    #include "linkedlist.h"
    int main()
    Linked_List one;
    one.insert("Angela", 261);
    one.insert("Jack", 20);
    one.insert("Peter", 120);
    one.insert("Chris", 270);
    one.print_list();
    one.remove("Jack");
    one.print_list();
    one.remove("Angela");
    one.print_list();
    one.remove("Chris");
    one.print_list();
    return 0;

    setw is the equivalent of the field width value in printf. In your code, the printf version would look like:
    printf("%8s", CURSOR->name.c_str());
    I much prefer printf over any I/O formatting in C++. See the printf man page for more information. I recommend using Bwana: http://www.bruji.com/bwana/
    I do think it is a good idea to verify your code on the platform it will be tested against. That means Visual Studio. However, you don't want to use Visual Studio. As you have found out, it gets people into too many bad habits. Linux is much the same way. Both development platforms are designed to build anything, whether or not it is syntactically correct. Both GNU and Microsoft have a long history of changing the language standards just to suit themselves.
    I don't know what level you are in the class, but I have a few tips for you. I'll phrase them so that they answers are a good exercise for the student
    * Look into const-correctness.
    * You don't need to compare a bool to 1. You can just use bool. Plus, any integer or pointer type has an implicit cast to bool.
    * Don't reuse your CURSOR pointer as a temporary index. Create a new pointer inside the for loop.
    * In C++, a struct is the same thing as a class, with all of its members public by default. You can create constructors and member functions in a struct.
    * Optimize your function arguments. Pass by const reference instead of by copy. You will need to use pass by copy at a later date, but don't worry about that now.
    * Look into initializer lists.
    * In C++ NULL and 0 are always the same.
    * Return the result of an expression instead of true or false. Technically this isn't officially Return Value Optimization, but it is a good habit.
    Of course, get it running first, then make it fancy.

  • Error in Jdeveloper 10g in Remote deployment : Help Needed ASAP

    Hi,
    Am trying to deploy the simple application to remote oracle IAS server from Jdeveloper 10g. It is not allowing me to deploy any application remotely. The deployment log window shows following message:
    Target platform is Oracle9i Application Server (AppServerConnection1).
    Wrote WAR file to C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.war
    Wrote EAR file to C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear
    Invoking DCM servlet client...
    C:\jdev10g\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\jdev10g\jdev\lib\oc4j_remote_deploy.jar http://as18schgefage:1811/Oc4jDcmServletAPI/ ias_admin **** redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Command = INVALID_COMMAND
    #### Invalid command: redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    #### Could not send command to Oc4jDcmServlet
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-6)
    #### HTTP return code was -6
    Exit status of DCM servlet client: -6
    Elapsed time for deployment: 4 seconds
    #### Deployment incomplete. #### Mar 16, 2005 9:20:03 AM
    Please help asap.
    Regards,
    Ujwala

    1. Re-test your connection from JDev to AS and it must success.
    I suggest to create a new OC4J instance on AS and fill
    the instance name on the dialog window while
    creating AS Connection on JDev. i.e OC4J instance name (optional)
    2. For JDev 9.0.5.x/10.1.2 using AS 9.0.4,
    don't forget to install ADF Runtime Libraries on AS.
    3. Make sure your AS support JDK/J2SE version as in JDev.
    JDev 10.1.2 need AS to use JDK version 1.4.2_04-b05.
    You can download it from http://java.sun.com/products/archive/j2se/1.4.2_04/index.html
    and install it.
    To cek your ORACLE_HOME/jdk/bin/java -fullversion
    Regs,
    Ferry Situmorang

  • Layout Problem, Help Need

    I developed one custom Report, which will print on pre print stationary. Really Problem here is when i send to printer it will printer properly on 8/12 By 11 Page, but i don't what is the reason it is not printing on Page after 7 Inch, even i thought i increase layout width it dos't Print after 7 Inch on Page, can i know why it is doing like these, any clue, please let me know.
    Report Verions : 6i
    Main Section : Width => 8.5
    Height => 12.5
    Orientation => Portrait
    Report Width => 80
    Report Height => 90
    Your Help Rally appreicate in advance.
    Thanks,
    Praveen

    You may need to contact support and actually show them the report to really solve the problem, but here are a few things to check first:
    a) Check the report margins, make sure that they will allow the report body to display past 7".
    b) Check that the frames and repeating frames are set to horizontally variable, or expand so that they can grow if required.
    Hope this helps,
    Danny

  • 2008 Macbook - HELP NEEDED ASAP

    I have just bought a second hand macbook and its in spotless condition with "Macbook OS X Install Disc 1 & 2" along with the OS X SnowLeopard discs also.
    Here is the specs and below is the help i need.
    MacBook White 13 inch 2.4 GHz Core 2 Duo – Early 2008
    Processor: 2.4 GHz Core 2 Duo
    RAM: 4GB 667 MHz
    Display: 13.3 inch
    HDD: 160GB
    Manufacturer -
    Apple
    Product Family -
    MacBook
    Model ID -
    MacBook4,1
    Model Number -
    A1181
    1, My first problem is that i have a user name and password which is needed. I have contacted the seller and he has said that he reset it all and that the username was "admin" and the password was blank but he said that with resetting it all it was a case that it would have been set up for me to start with it straight away.
    2, My second question is that does it come with a lit keyboard as F5 & F6 are blank but on my 2011 macbook pro i have put the brightness up on my keyboard.

    Links to how to reset.
    http://support.apple.com/kb/ht1274
    http://osxdaily.com/2010/08/10/forgot-mac-password-how-to-reset-mac-password/

Maybe you are looking for

  • Rogue AP and radio statistics

    I have configured AP in scanner mode.Now is it possible to extract the radio statistics and IDS info gathered by the AP's by a third party management program and not via WLSE. To reiterate,i don't have WLSE installed but have configured the AP in sca

  • Vendor code no range error

    dear sir/ me dam   i am creating new vendor code but  saving problem for number range  is sowing account already exists

  • Crystal Reports 2008 and printing with Zebra printer issue

    Hello, Since we have upgraded the reports from XI to 2008, the reports are not printing well in the Zebra printers. The report gets shrunk to half the size. Is there something that needs to be done after the upgrade? Thanks in advance

  • Setting up encryption on an already installed Arch setup?

    Recently I have been thinking about setting up encryption on my already installed Arch setup. I would reinstall and encrypt it that way, however I do not have an external HDD big enough to back up everything, so I was wondering if it is possible to e

  • I can't install any adobe programs!!!

    Dear support! My problem is I can't install the Adobe programs from creative cloud. The story: When I try installing the premiere cs6 family the program dowloading, but not extract. Then I wrote a email the hungarian adobe distributor (designshop.hu)