Itunes problem. Urgent assistance needed please!!

Hello:
Yesterday I updated my itunes version and installed the new 7.0.2 version but every time that I open the itunes, my computer get restarted. Please let me know what I have to do to resolve my problem.
Thank you very much.

Yesterday I updated my itunes version and installed the new 7.0.2 version but every time that I open the itunes, my computer get restarted.
are you getting any sort of blue screen? if so, what numerical and text codes are you getting with it? (ie 0x[zeros/letters/numbers] CAPSANDUNDERSCORES)
if the blue screen mentions a specific file, let us know what that is called too. (exact spelling, please.)
here's a reference on the sorts of things i'm asking about:
Troubleshooting Windows Stop Messages
if you're not seeing a blue screen (or just a flash of one), we can use this technique to make hidden blue screens appear for us:
1) Open your system control panel (Start->Control Panels->System).
2) Select the "Advanced" tab.
3) Click the "Startup and Recover" section's "Settings" button
4) Verify that under "System Failure" the "Automatically restart" checkbox is not checked.

Similar Messages

  • IPhone 3G 8GB Crashes when syncing with iTunes. URGENT HELP NEEDED.

    I have latest iTunes and OS on my iPhone 3G...
    Every time i plug my iPhone in it begins to sync and then iTunes will freeze and not respond..
    I have tried re installing iTunes.. I can't reset my iPhone as i can't create a backup..
    URGENT HELP NEEDED PLEASE!

    I don't have an iphone, but if it's anything like my click-wheel ipod, a reset doesn't delete anything.
    It just resets the ipod's operating system, kind of like a PC restart. Did you try this Sleep/Wake button thing mentioned here?
    http://support.apple.com/kb/HT1737
    Maybe it's a podcast of voice memo causing the problem like it did for this person
    http://discussions.apple.com/message.jspa?messageID=10907809#10907809
    That's all I got. You might have better luck on an iPhone forum. Everyone there would probably have one. Like I said, I don't.

  • Poor image quality on DVD made in iDVD - Urgent assistance required PLEASE

    I have imported pictures to form a slideshow in iDVD. The pictures are great quality and look good but the problem I am having is how distorted and blurry they become when burning the dvd.
    They look good for a split second when they transition in and then transition out, but become distorted whilst on display (set for 5 seconds)
    I need urgent assistance please with this matter.
    ps I am still a bit of a novice at this.
    Thanks

    I agree with Bengt - there are better ways to make slideshows. Here is mine:
    There are many ways to produce slide shows using iPhoto, iMovie or iDVD, but they all have one thing in common: they reduce the quality of the photos to that of a movie still frame and sometimes limit the number of photos you can use.
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico: http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie 6 as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, then send it to iDVD 7, or Toast, for burning.
    You will be pleasantly surprised at how professional the results can be!

  • ITunes corrupt file message - urgent help needed please

    I have an iPod video 30GB, i downloded the latest iTunes & Quicktime version, and updated my iPod also to the latest update. When i connect my iPod and start downloading music from the library in iTunes, the iPod keeps on disconnecting and restarting by itself, and i get a message that the file iTunes.exe is corrupt. I tried Apple support and did all what they said by downloading the latest updates and versions, and also did the Chkdsk utility on Windows, but still it did not work, the iPod keep on restarting and i cannot download anything on it, i had it now for a week and did not use it at all because of this problem, can somebody with a technical background help me please, i use Windows XP.

    I have an iPod video 30GB, i downloded the latest iTunes & Quicktime version, and updated my iPod also to the latest update. When i connect my iPod and start downloading music from the library in iTunes, the iPod keeps on disconnecting and restarting by itself, and i get a message that the file iTunes.exe is corrupt. I tried Apple support and did all what they said by downloading the latest updates and versions, and also did the Chkdsk utility on Windows, but still it did not work, the iPod keep on restarting and i cannot download anything on it, i had it now for a week and did not use it at all because of this problem, can somebody with a technical background help me please, i use Windows XP.

  • Urgent assistance needed on textfields/labels please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one.
    My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
    The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    public void init() {
    backgroundColor = new Color(200,255,255);
    this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
    makeButtons();
    row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row1.add(clearB);
    row1.add(studFindB);
    row1.add(studForB);
    row1.add(courB);
    row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row2.add(studBackB);
    row2.add(courFindB);
    row2.add(courForB);
    row2.add(studB);
    row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row3.add(courBackB);
    add(row1);
    add(row2);
    add(row3);
    Panel p = new Panel(new BorderLayout());
    Label studID = new Label("STUDENT ID");
    TextField entry = new TextField(" ");
    p.add(studID,BorderLayout.WEST);
    p.add(entry,BorderLayout.CENTER);
    Label firstTF = new Label("FIRST NAME");
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    setBackground(backgroundColor);
    clearB.addActionListener(this);
    courBackB.addActionListener(this);
    studB.addActionListener(this);
    courForB.addActionListener(this);
    courFindB.addActionListener(this);
    studBackB.addActionListener(this);
    courB.addActionListener(this);
    studForB.addActionListener(this);
    studFindB.addActionListener(this);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    appletWidth = 8*4+row1.getSize().width;
    appletHeight = 8*(2+courBackB.getSize().height);
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB,
    studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    thanks in advance for anything someone can do for me

    I haven't tried your code, but since you use a layout manager, you shouldnt need to think about setting the size for the applet.
    And I think when you call the method makePanel the last 4 times, you want to use the returned panel to add your components on. Right now you add everything directly to the panel and never use the panels you create.
    And you also reuse some of your components more than once (like e.g. courBackB). You need to create a new button everytime, otherwise if you try to add the same button twice, the second one will not be displayed.
    Try to add the components one by one and check it is displayed before you add the next one.
    If you want to check what components and their sizes etc, you have on your applet, here is a little trick. Get the focus on your applet and press ctrl+shift+F1. If you run the applet in a browser, you will get something in the java console that displays all your GUI components and a description of them. So
    It might help you.
    Also take a look of the Java Tutorial for the AWT. You can download it from
         http://java.sun.com/docs/books/tutorial/information/download.html
    called tut-OLDui.zip.

  • Urgent Assistance needed - Problems on entourage mail migration from

    I was migrating all my Entourage (office for Mac 04) e-mails from my Powerbook G4 to my new MacBook (with office for Mac 08). I see now that I lost all my e-mails (more than 40.000) and I canf found nothing on the HD of the Powerbook G4. I have also lost my backups before so I m in critical position. Somebody can help and give me hints to recover the HD or my emails? Many Thanks L.

    Unless you trashed the files, I would think they are still on your Powerbook. If I remember correctly, those files live in a Microsoft folder within the Users folder. You can do a search thru Spotlight.

  • Can't get ATV working with Onkyo TX-SR605-URGENT ASSISTANCE NEEDED!!

    I'm hoping someone will be able to give me some advice, as I've now spent way too much time trying to figure out what's going wrong. I've just purchased the Onkyo receiver, which in itself is an extremely daunting piece of equipment after my very straightforward Rotel stereo amp!
    I have only 1 HDMI connection available on my 32" Panasonic LCD TV & have, to date, had my ATV connected to it. With my ATV also connected to my amp (via RCA cable), I've been happily viewing/listening to all my iTunes content this way. I understand from reading elsewhere in this forum that I should be able to maintain my HDMI connection to ATV, connect into the receiver using optical, and by so doing, obtain the same results (if not better, thanks to the optical connection) as was previously the case. So far, I've been unable to do this. The only way I've been able to get any audio happening through the speakers is by reconnecting the RCA cable. The optical cable I purchased by the way is a good quality one so I doubt this is where the problem lies - although I guess it's possible.
    The 1st problem I encountered when endeavouring to set the system up was that I was unable to get any onscreen information, as I couldn't find an AV input that responded to the receiver's 'setup instructions'. I assumed this would come via the TV's HDMI AV option, given the ATV is the means of connecting to the TV & that's connected via HDMI, but no joy. However, I did some of the basic setup w/o the onscreen visuals, and proceeded to see if I could access my iTunes content with the connections I referred to earlier. As I said before ... no go w/o the RCA cable connected and even then, no sound through the speakers if I reverted to just watching the TV.
    I'm driving myself crazy here, and am now at the point where I can see no value in continuing to read & re-read the Onkyo manual. Although I can accept that it's likely to take me some time to learn how to properly drive this beast and get the most out of it, I don't think (from what I've read elsewhere here) that it should be this hard to get what I'm wanting up and running.
    Please HELP and save my sanity!
    [Thanks in advance to anyone who comes to the rescue ]

    jrmccoy, thank you so much! I have never used an optical connection until now, & so was not aware of the necessity to get the 'snap' happening in order to get a good connection. With some trepidation, I applied the required force to the connection to the ATV - sure enough, it 'snapped' in. I tried to get the receiver connection to snap as well, but had no luck there - it seems to be a very 'sloppy' rather than tight connection that slips out with very little effort. However, after pushing really hard on the cable & getting no better connection, I gave up & tried it as was. The result was that , yipee, I now have it all working as I'd anticipated it should. The only thing I still don't have, is the TV sound coming through the speakers - I thought that with the ATV providing the conduit between the TV & the receiver, I wouldn't need any other connection from the receiver to the TV. I suspect now that that was an incorrect assumption! Thought it was all a bit too easy ... sigh.
    Once again Apple Discussions have come to my rescue - I honestly don't know what I'd do without the assistance of all you generous people out there with so much & such wide-ranging knowledge!

  • Recall for my problem urgent help needed

    Hi friends,
    I am a new DB administrator and I have faced a problem in our database.
    Here i will explain our architecture and i will state the problem.
    In my org. we have database server responsible for keeping the DB itself. Another server which is the main server is responible to control the access to the network and making and storing DB backups using a third party software (Net Backup Software). The backups are kept in tapes accessed by main server using tapes robot.
    Our backup policies is that the software makes full backup every week and a incremental dialy backups of the DB. The retention of each backup is two weeks. All servers have been shutted down during vacations.
    The problem is that when we came from two weeks vacation, users found that the DB is in old state and we lost the most recent valid state. I tried all my best since month ago to do recovery. I decided the point of time to restore and I also use the SCNs but I could'nt reach a solution. I used Net backup, Rman, EM but without a result.
    When i check NetBackup console I find a backup available since 28 of July 2010. Actually the changes are made after this date and now the DB state is older thatn this date. the question is: WHER HAVE THE CONSEQUENT CHANGES GONE? around one mounth of work has been lost..
    the oracle shows me the following message:
    The RMAN script for the recovey is:
    Run {
    allocate channel t1 type 'sbt_tape';
    set until time to_date('28-Jul-2010 00:00:00', 'DD-MON-YYYY HH24:MI:SS');;
    restore database;
    recover database;
    release channel t1;
    RMAN-00571: ========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ============
    RMAN-00571: ========================================================
    RMAN-03002: failure of restore command at 21/09/2010 11:01:26
    RMAN-06100: no channel to restore a backup or copy of datafile 20
    RMAN-06100: no channel to restore a backup or copy of datafile 19
    RMAN-06100: no channel to restore a backup or copy of datafile 18
    RMAN-06100: no channel to restore a backup or copy of datafile 17
    RMAN-06100: no channel to restore a backup or copy of datafile 16
    RMAN-06100: no channel to restore a backup or copy of datafile 15
    RMAN-06100: no channel to restore a backup or copy of datafile 14
    RMAN-06100: no channel to restore a backup or copy of datafile 13
    RMAN-06100: no channel to restore a backup or copy of datafile 12
    RMAN-06100: no channel to restore a backup or copy of datafile 11
    RMAN-06100: no channel to restore a backup or copy of datafile 10
    RMAN-06100: no channel to restore a backup or copy of datafile 8
    RMAN-06100: no channel to restore a backup or copy of datafile 6
    RMAN-06100: no channel to restore a backup or copy of datafile 5
    RMAN-06100: no channel to restore a backup or copy of datafile 4
    RMAN-06100: no channel to restore a backup or copy of datafile 3
    RMAN-06100: no channel to restore a backup or copy of datafile 2
    RMAN-06100: no channel to restore a backup or copy of datafile 1
    the backup script is as follows:
    DB server = jewcsrv3.
    Main server = jewcsrv1.
    RUN {
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo %BACKUP_TYPE%
    echo FORMAT 'bk_u%%u_s%%s_p%%p_t%%t'
    echo DATABASE;
    echo RELEASE CHANNEL ch00;
    echo # Backup Archived Logs
    echo # For an offline backup, remove the following sql statement
    echo sql 'alter system archive log current';
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo FORMAT 'arch-s%%s-p%%p-t%%t'
    echo ARCHIVELOG
    echo ALL
    echo DELETE INPUT;
    echo RELEASE CHANNEL ch00;
    echo # Control file backup
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo FORMAT 'bk_u%%u_s%%s_p%%p_t%%t'
    echo CURRENT CONTROLFILE;
    echo RELEASE CHANNEL ch00;
    echo }
    Could any one please help me to solve this problem. If there is no solution what could he suggest to do now to have a valid state and for future to avoid this problem.
    Thanks alot..
    PLEASE REPLY AS SOON AS POSSIBLE
    Edited by: 799539 on Oct 4, 2010 12:35 AM

    Your BACKUP script does set the NetBackup parameters for the Tape Channels.
    However, your RESTORE script does not specify the NetBackup parameters -- so Oracle doesn't know which channel to use for the Restore.
    You need to add the NetBackup parameters in the RESTORE.
    However, this is suprising :
    The problem is that when we came from two weeks vacation, users found that the DB is in old state and we lost the most recent valid stateA database will NOT EVER "go back to an old state" until and unless someone has restored an old backup. If the servers were shutdown for two weeks, who would have restored the database. If the servers were shutdown, how would Oracle have automatically gone back to an old stats ? There must have been some manual actions.
    Hemant K Chitale

  • IReader installed but wont open Urgent help needed please!

    I have installed Acrobat Reader X.
    When i try to open files I get a problem saying Microsoft and Adobe have encountered a problem and need to close.
    I get an option to Debug, Send error report or Dont send.
    The information which comes up when I look for more information is the following::
    error signature
    Appname. Acrord32.exe. Appver 10.0.1.434 Modname acrord32.dll
    Modver 10.0.1.434  offset 001869666
    It was previously working then the next time I came to use it I got this.
    Desparately need help

    1. camera loading - have you tried updating or reinstalling your firmware?
    2. keyboard - define strange
    3. slow - how much is phone memory and what apps are running in background (see taskmanager, hold menu key until it shows)? turn off theme animations. it helps.
    4.  handwriting - have you set the handwriting recognition to recognize your particular penmanship? Go to menu>settings>phone>touch input. Set writing speed to very fast, calibrate your screen and take handwriting training so the phone will recognize your handwriting.
    5. qwerty - what things? how so? have you set it to qwerty?
    6. cannot scroll in file manager - its not a problem. Thats normal for the OS. Use Nokia Photobrowser or the Gallery for viewing pictures. File manager is for managing files, not viewing them.
    7.  Motion sensors - read #3
    8. Phone feels hot - how hot? Batteries heat up when charged. Its normal. However it depends on how hot exactly.
    9. Depends maybe on how long the video is. My 5800 feels hot when watching an entire movie. Also this would be reflected on #3 as well, as the phone may be working overtime.
    10.  Music when unplug headset - Its normal for almost all Nokia phones (heck even some other brands this is normal), try to use an alternative player if you like
    11. Back cover -  Its the design
    12. Yotube - use youtube app
    13. Use Nokia Photo Browser download from ovi store. It shows pics only and looks real cool. Anyway, you can put all your videos in the gallery into a virtual folder so that it is separate. Its the way the gallery is designed, to show both pics and video. As you can see, it is written Images and Videos, so they're supposed to be together in there.
    14. Adobe still hasnt caughtup its mobile solutions for its PC solutions. Its their fault not Nokia's or anyone else's.
    15. Depends on extension. Built in office reader only reads .doc, not .docx.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • TextFields / labels in Applet...Urgent help needed please!!

    I have been trying for days to add labels and textFields to my applet and can only manage to display one.
    My assignment instructions suggest I use makeTextField method and call the setEditable method from the makeTextField method to avoid repetition of code.
    The following is my code...I must have this done in the next couple of days so if someone could please please give me some assistance it would be really appreciated....also, thoughts on my layout would be great as well...i cant seem to set up my buttons in the correct order.
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    public void init() {
    backgroundColor = new Color(200,255,255);
    this.setLayout(new FlowLayout(FlowLayout.CENTER,4,1));
    makeButtons();
    row1 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row1.add(clearB);
    row1.add(studFindB);
    row1.add(studForB);
    row1.add(courB);
    row2 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row2.add(studBackB);
    row2.add(courFindB);
    row2.add(courForB);
    row2.add(studB);
    row3 = makePanel(new FlowLayout(FlowLayout.LEFT,4,2),backgroundColor);
    row3.add(courBackB);
    add(row1);
    add(row2);
    add(row3);
    Panel p = new Panel(new BorderLayout());
    Label studID = new Label("STUDENT ID");
    TextField entry = new TextField(" ");
    p.add(studID,BorderLayout.WEST);
    p.add(entry,BorderLayout.CENTER);
    Label firstTF = new Label("FIRST NAME");
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",courBackB);
    add("East",studB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",p);
    add("South",courForB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("North",courFindB);
    add("South",studBackB);
    makePanel(new BorderLayout(2,2),backgroundColor);
    add("West",p);
    add("East",studForB);
    setBackground(backgroundColor);
    clearB.addActionListener(this);
    courBackB.addActionListener(this);
    studB.addActionListener(this);
    courForB.addActionListener(this);
    courFindB.addActionListener(this);
    studBackB.addActionListener(this);
    courB.addActionListener(this);
    studForB.addActionListener(this);
    studFindB.addActionListener(this);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    appletWidth = 8*4+row1.getSize().width;
    appletHeight = 8*(2+courBackB.getSize().height);
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB,
    studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    the buttons currently dont do anything. this is stage 1 of 3 for my 3 part assignment. for now i am just supposed to get the format right and show sample text in the textfields.
    the format is supposed to look something like the following (cant copy existing as it is protected)
    <- STUDENTS -> CLEAR <- COURSES ->
    student id FIND course id FIND
    last name_________first name______course name_____
    address________________________________________
    city______province___________p.code______________
    phone__________e-mail_______coordinator___________
    #of courses completed_____ #of students passed______
    student's average grade___ students grade ave grade___
    messages______________________________________
    the ones in caps are buttons and the rest are labels with text fields beside most of the labels.
    i apologize for the extremely long question but i hope this is what you were looking for to give me some help...anything would be greatly appreciated!!
    thanks in advance for anything someone can do for me

    hi,
    may this helps to solve your problem
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    public class Registry4b extends Applet implements ActionListener {
    TextField sid;
    TextField cid;
    public void init() {
    backgroundColor = new Color(200,255,255);
    setLayout(new GridLayout(2,1)); // 2 rows, one column, first row for search, the second for output
    Panel up=new Panel(new GridLayout(3,1)); // search panel
    Panel down=new Panel(new GridLayout(1,1)); //output panel
    down.add(new Label("Just for the output"));
    Panel p1=makePanel(new GridLayout(1,7),backgroundColor);
    makeButtons();
    p1.add(studBackB);
    p1.add(studB);
    p1.add(studForB);
    p1.add(clearB);
    p1.add(courBackB);
    p1.add(courB);
    p1.add(courForB);
    up.add(p1);
    Panel p2=makePanel(new GridLayout(1,3),backgroundColor);
    p2.add(makeLabel("Student ID"));
    sid=new TextField("");
    p2.add(sid);
    p2.add(studFindB);
    up.add(p2);
    Panel p3=makePanel(new GridLayout(1,3),backgroundColor);
    cid=new TextField("");
    p3.add(makeLabel("Course ID"));
    p3.add(cid);
    p3.add(courFindB);
    up.add(p3);
    add(up);
    add(down);
    private Label makeLabel(String label) {
    Label label1 = new Label(label,Label.RIGHT);
    label1.setFont(new Font("Courier",Font.BOLD,10));
    return label1;
    public void start() {
    //appletWidth = 8*4+120;//row1.getSize().width;
    //appletHeight = 8*(2+courBackB.getSize().height);
    appletWidth=200;
    appletHeight=90;
    public void paint(Graphics g) {
    setSize(appletWidth,appletHeight);
    validate();
    public void actionPerformed(ActionEvent e) {
    String s = (String)e.getActionCommand();
    private Button makeButton(String label, Color color, Font font) {
    Button b = new Button(label);
    b.setBackground(color);
    b.setFont(font);
    return b;
    private Panel makePanel(LayoutManager lm, Color c) {
    Panel p = new Panel();
    p.setLayout(lm);
    p.setBackground(c);
    return p;
    private void makeButtons() {
    Font f = new Font("Courier", Font.BOLD, 10);
    Color grey = new Color(255,100,100);
    clearB = makeButton("CLEAR",grey,f);
    studB = makeButton(" STUDENTS ",grey,f);
    studForB = makeButton("->",grey,f);
    studFindB = makeButton("FIND",grey,f);
    courFindB = makeButton("FIND",grey,f);
    studBackB = makeButton("<-",grey,f);
    courB = makeButton(" COURSES ",grey,f);
    courBackB = makeButton("<-",grey,f);
    courForB = makeButton("->",grey,f);
    TextField addressTF = new TextField("ADDRESS", 10);
    static final String initialString = " ";
    String Filler = " ";
    Panel row1, row2, row3, p1;
    int appletWidth, appletHeight;
    Button clearB, studForB, studFindB, courFindB, studBackB,courB, courBackB, studB, courForB;
    Color backgroundColor;
    }interesting for you is only the init()
    regards

  • Urgent Assistance needed on this

    Hi, I am fairly new to Java and this assignment is way over my knowledge, if anyone able to assist me on the whole coding, that would be great. Thanks all.
    I am thinking on using array and the file heading on hardware.dat can be omitted.
    Task-
    Imagine that you are an owner of a hardware store and need to keep an inventory that can tell you what different kind of tools you have how many of each you have on hand and cost of each one.
    Now do the following:
    (1) Write a program (Tool.java) that,
    (1.1) Initializes (and creates) a file ?hardware.dat?
    (1.2) lets you input that data concerning each tool, i.e. the program must ask the user for input and each of the user input is written back in the file.
    The file must have the following format:
    Record# Tool Name Qty Cost per item (A$)
    1 Electric Sander 18 35.99
    2 Hammer 128 10.00
    3 Jigsaw 16 14.25
    4 Lawn mower 10 79.50
    5 Power saw 8 89.99
    6 Screwdriver 236 4.99
    7 Sledgehammer 32 19.75
    8 Wrench 65 6.48
    (1.3) Exception handling that must be taken into account-
    (1.3.1) User must not input incorrect data
    (1.3.2) Cost of the item must be a number
    (2) Write another program (ListToolDetails.java) that,
    (2.1) lets you list all the tools, i.e. it will read the data from ?hardware.dat? in a proper manner (you can choose the display format), File name should not be hard coded.
    (2.2) lets you delete a record for a tool, as an example- you can delete all the details pertaining to the tool ? Wrench. Once you delete the information, records must be updated in the ?dat? file.
    (2.3) List the total price(rounded to two decimal places) of each tool, as an example, the total price of all the Hammers is A$128 * 10 = A$1280.00
    (2.4) Exception handling that must be taken into account-
    (2.3.1) In case user inputs an incorrect file name
    (2.3.2) In case user inputs incorrect Tool name (when the user wants to delete something)
    Bonus Task
    This task deals with the inclusion of Javadoc comments and generation of documentation pages.
    Task-
    Your task is to add meaningful javadoc comments in all the programs and generate HTML documentation pages.

    Hi, I am fairly new to Java and this assignment is
    way over my knowledge, if anyone able to assist me on
    the whole coding, that would be great. Thanks all.
    I am thinking on using array and the file heading on
    hardware.dat can be omitted.
    Task-
    Imagine that you are an owner of a hardware store and
    need to keep an inventory that can tell you what
    different kind of tools you have how many of each you
    have on hand and cost of each one.
    Now do the following:
    (1) Write a program (Tool.java) that,
    (1.1) Initializes (and creates) a file
    ?hardware.dat?
    (1.2) lets you input that data concerning each tool,
    i.e. the program must ask the user for input and each
    of the user input is written back in the file.
    The file must have the following format:
    Record# Tool Name Qty Cost per item (A$)
    1 Electric Sander 18 35.99
    2 Hammer 128 10.00
    3 Jigsaw 16 14.25
    4 Lawn mower 10 79.50
    5 Power saw 8 89.99
    6 Screwdriver 236 4.99
    7 Sledgehammer 32 19.75
    8 Wrench 65 6.48
    (1.3) Exception handling that must be taken into
    account-
    (1.3.1) User must not input incorrect data
    (1.3.2) Cost of the item must be a number
    (2) Write another program (ListToolDetails.java)
    that,
    (2.1) lets you list all the tools, i.e. it will read
    the data from ?hardware.dat? in a proper manner (you
    can choose the display format), File name should not
    be hard coded.
    (2.2) lets you delete a record for a tool, as an
    example- you can delete all the details pertaining to
    the tool ? Wrench. Once you delete the information,
    records must be updated in the ?dat? file.
    (2.3) List the total price(rounded to two decimal
    places) of each tool, as an example, the total price
    of all the Hammers is A$128 * 10 = A$1280.00
    (2.4) Exception handling that must be taken into
    account-
    (2.3.1) In case user inputs an incorrect file name
    (2.3.2) In case user inputs incorrect Tool name (when
    the user wants to delete something)
    Bonus Task
    This task deals with the inclusion of Javadoc
    comments and generation of documentation pages.
    Task-
    Your task is to add meaningful javadoc comments in
    all the programs and generate HTML documentation
    pages.First of all , If its your assignment you are ment to do it your self !!
    if u have a problem understanding stuff ask your tutor or prof.
    they are paid to teach u this stuff....
    second : break the problem in to small task as suggested before, it will help u understand the stuff better
    Last thing : No one here is gona do your home work for u
    so better start doing some research and if u have an implementation or a logic problem then post them here, sure people will help.
    now from what i read i think u need to start looking up on
    1) get data from the user : u need some thing like bufferedreader
    2) validate the input : check with the upper and lower bounds
    3) File handing : research on how to write to a file there are a milion pages there on the web teaching you this stuff

  • Urgent Assistance Needed

    Hi there fellows, 
    I am having a problem formatting this HP G62, well first issues is the heat exhaust, it very hot, however I manage that but  the real issue is the I cannot go ahead and complete to format this laptop, every time it says " A problem has been detected and windows has been shutdown to prevent damage to your computer".  I thought it was due to its heat exhaust, but it couldn't be since I directly faced it to an electric fan, aircon so it wont get hot. I tried logging in to its normal  windows 7 log in, but I couldn't since the format process has been halfway and all the data on the HD has been deleted, 
    I'll greatly appreciate all of your efforts in solving this concern of mine. 
    pls email me back ASAP.
    Thanks, 
    Rob Philipps

    Hi Rob,
    Please post the HP product number for your laptop so that the members of the community can better assist you with your questions and issues.
    Performing a hard reset as that can sometimes restore the system fan to working order. See Use Hard Reset to Resolve Hardware and Software Issues for details.  This posted article is an excellent source of information for dealing with heat issues.
    Now try the HP recovery disks or USB recovery flash.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Urgent help needed please: Updating Kernel

    Hi gurus,
    I am new to BI and needs to upgrade the Kernel to revision 133 for loading basis patch 14. I downloaded the kernel and copied to the F:\usr\sap\BID\SYS\exe\uc\NTI386.
    After this I was unable to restart the services.
    Can someone please guide thru this process.
    Thanks and regards,
    Iqbal

    Hi All,
    I tried as was recommended but am still faced with an issue.
    here is the dev_disp log.
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        BIQ
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    133
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        5908
    Mon Mar 24 08:37:12 2008
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 5908) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 133 successfully loaded
         shared lib "dw_xtc.dll" version 133 successfully loaded
         shared lib "dw_stl.dll" version 133 successfully loaded
         shared lib "dw_gui.dll" version 133 successfully loaded
         shared lib "dw_mdm.dll" version 133 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Mar 24 08:37:17 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    ERROR => ShmCreate: Key=37 Inv.Size: req.=67072, alloc.=0 [shmnt.c      615]
    ERROR => CrtOsSemAdm: Semaphore Admin. Table not created [semnt.c      1991]
    ERROR => SemInMgt: Create Global Admin.Table failed [semnt.c      513]
    ERROR => DpSysAdmExtCreate: SemInMgt [dpxxtool2.c  725]
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    DP_FATAL_ERROR => DpSapEnvInit: DpIPCInit2
    DISPATCHER EMERGENCY SHUTDOWN ***
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Mar 24 08:37:22 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >< (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    DpShmPrfSwitch : State already set (OFF)
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    call semaphore clean-up function ...
    ***LOG Q0E=> DpSigGenHandler, Exception (c0000005) [dpnttool.c   432]
    C-STACK -
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Application exception occurred:
    Exception : c0000005 (Access Violation)
    App       : disp+work.EXE (pid=5908)
    When      : 3/24/2008 8:37:22.798
    Threads   : 2
    Computer Name       : RK-VAL-BI
    User Name           : SAPServiceBIQ
    Number of Processors: 4
    Processor Type: EM64T Family 6 Model 15 Stepping 7
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 970
    --> (FAULT) Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    0000000007d1f310 000000000041a395 0000000000000001 disp+work!DpVmcCheckDebugProxy [dpxxvmc.c (1211)]
    0000000007d1f400 000000000041d007 005f005000410001 disp+work!DpHalt [dpxxdisp.c (10016)]
    0000000007d1fc40 0000000000421a1b 0000000002671ab0 disp+work!DpFatalErr [dpxxdisp.c (17789)]
    0000000007d1fee0 000000000042d570 0000000000000000 disp+work!DpSapEnvInit [dpxxdisp.c (1388)]
    0000000007d1ff10 000000000040108d ffffffff00000002 disp+work!DpMain [dpxxdisp.c (1076)]
    0000000007d1ff40 00000000019c7dd1 0000000000000000 disp+work!nlsui_main [thxxanf.c (84)]
    0000000007d1ffa0 0000000077d5964c 0000000000000000 disp+work!wmainCRTStartup [crtexe.c (498)]
    0000000007d1ffd0 0000000000000000 00000000019c7c60 kernel32!BaseProcessStart
    State Dump for Thread Id b88
    --> Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    000000000ef0fe40 0000000077d5f691 0000000007e6ac60 ntdll!NtFsControlFile
    000000000ef0feb0 00000000018ae00f 0000000000000000 kernel32!ConnectNamedPipe
    000000000ef0ff40 000007ff7fc411c4 0000000000000000 disp+work!SigIMsgFunc [signt.c (679)]
    000000000ef0ff70 0000000077d6b6da 0000000077d6b6a0 msvcrt!endthreadex
    000000000ef0ffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart
    call clean-up function ...
    SigICallExitRoutine: call exithandler (DpHalt)
    DpHalt: shutdown server >< (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    DpShmPrfSwitch : State already set (OFF)
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    Can someone please help me with getting pass this error?
    Thanks and regards,
    Iqbal

  • Spectre XT - screen frame broken ! urgent assistance needed

    I have exactely the same issue with my Spectre XT as some one else already posted before: The left hinge has become so stiff that it is starting to break the screen frame and lid apart unless I am ultra careful to pinch the front and back sides together while opening or closing the lid with my other hand. I'm based in Paris France and would like to have assistance from HP ASAP.  Many Thanks!

      Hi , Please use the following link to create yourself a case number, then call and it may help speed up the call process:
    Step 1. Open link: www.hp.com/contacthp/
    Step 2. Enter Product number or select to auto detect
    Step 3. Scroll down to "Still need help? Complete the form to select your contact options"
    Step 4. Scroll down and click on: HP contact options - click on Get phone number
    Case number and phone number appear.
    They will be happy to assist you immediately. Thanks.

  • ITunes folder corrupted - advice needed please!

    Hi, I have had problems with iTunes breaking songs and losing album artwork for several months now and I have come to the conclusion that I must delete the 'iTunes' folder in 'My Music' (I have tried much else to no avail). I am almost 100% certain that is the route of the corruption. The problem is, although I can put up with losing my playlists and play counts, I have an iPhone and obviously need to retain its settings and apps. Is there a way that I can go about deleting this folder, while retaining these things?
    Any help would be very appreciated. Thanks,
    James

    Seems like noone has the answer about corrupted files - iTune creates a real mess in organising music files you have collected - I believe it is iTune the cause of all corruption problem with your music folder (iTune shoud never organise anything on a windows platform) - if you have found a solution to access the corrupted folder and recover all files I am interested - then adios iTune - don't want to use it anymore - liked it - now despise it
    Bad iTune

Maybe you are looking for