Problem i faced with a program Programming Software Development by DarkPheonix …; private int SCREEN_SIZE; private boolean powerON; private int volume = 0; private…channel--; } public void power(){ if( powerON == false) powerON = true; else powerON = false; } public void increaseVolume(){ volume… Re: Problem i faced with a program Programming Software Development by DarkPheonix …() +" inch " + t1.getManufacturer() + " in"); if(t1.powerON == false) System.out.println(" off mode"); else System… MiTAC MiNote 6020 boot problem Hardware and Software Hardware by sbrannstrom … screen and the system froze. I tried to reboot, the PowerOn diode lit up but that was it... The CPU fan… HP Pavillion 1000 Community Center Say Hello! by tometech I have an HP Pavillion 1000 that a friend gave me to look at. The problem is that when you poweron the notebook all of the top icons in blue light up, the fan revs up and then nothing it does not boot up. Any Ideas? Re: power on password, black screen Hardware and Software Microsoft Windows by hollyy … password, black screen F1 is doing nothing except going to poweron password, black screen F10 also goes to power on password… , black screen F8 also goes to poweron password , black screen i have also tried entering 3 passwords… Re: Shut Down won't power off computer Hardware and Software Microsoft Windows by sa_shadow In the BIOS, go to "Power Management Setup", then go to IRQ/Event Activity Detect", then disable "PowerOn by PCI Card." You can also change "Soft-Off by PWRBTN" (under "Power Management Setup") to "Delay 4 Sec" and see if that helps. Re: Shut Down won't power off computer Hardware and Software Microsoft Windows by inphoenix … go to IRQ/Event Activity Detect", then disable "PowerOn by PCI Card." You can also change "Soft… Re: Problem starting safe mode Hardware and Software Microsoft Windows by MartyMcFly … you boot your PC, it goes through a process called poweron self test, POST. During this time, and before it thinks… Re: Problem with removing Display card drivers Hardware and Software Microsoft Windows by MartyMcFly … not advised also. safe mode can be accessed during POST (PowerOn Self Test - the bit before Windows logo appears when you… Re: Problem with removing Display card drivers Hardware and Software Microsoft Windows by alanled … not advised also. safe mode can be accessed during POST (PowerOn Self Test - the bit before Windows logo appears when you… Re: Desktop Problems Hardware and Software Microsoft Windows by MartyMcFly … accessed from restart), and press F8 repeatedly, throughout the POST (PowerOn Self Test - the white text on black background, that lists… Re: A7N8X-X MCP LAN Connection Problem Hardware and Software Microsoft Windows by MartyMcFly … turn on your PC, and press F8 alot during POST (PowerOn Self Test - The bit before the Windows logo appears). this… Re: A7N8X-X MCP LAN Connection Problem Hardware and Software Microsoft Windows by Musica … turn on your PC, and press F8 alot during POST (PowerOn Self Test - The bit before the Windows logo appears). this… Re: 100% CPU usage due to a new hard disk,please help me Hardware and Software Microsoft Windows by MartyMcFly …), or do they all take too long; Phase 1 - POST (PowerOn Self Test) This is the part where you have Black… Re: Toshiba Satellite A10 Won't go into windows Hardware and Software Hardware by MartyMcFly Try F2 or Del for Bios. Press F8 during POST (PowerOn Self Test - The black screen white text stuff), and try … Re: Problem i faced with a program Programming Software Development by jackmaverick1 I didn't read it very well, but I have a feeling it's that loop not being set, or if it is, it's being reset back to it's previous value. Again, I didn't read it well enough to know for sure, but my best guess, would be that loop doing whatever it's doing twice. Hope this help, JT Re: Problem i faced with a program Programming Software Development by NormR1 Look at your code. What conditions will cause the menu to be printed twice? Add a println to show what the user entered and was read into the a variable. Run your program and copy the console and paste it here so we can see what you entered and what the program did. To copy the contents of the command prompt window: Click on Icon in upper left … Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=NormR1;1614264]Look at your code. What conditions will cause the menu to be printed twice? Add a println to show what the user entered and was read into the a variable. Run your program and copy the console and paste it here so we can see what you entered and what the program did. To copy the contents of the command prompt window: … Re: Problem i faced with a program Programming Software Development by NormR1 Can you explain where the output from the program is incorrect? You show your input in RED. What is supposed to happen after you enter your input? Have you looked at the code in the program to see what it is coded to do in the loop after a user enters a letter? To help you see what is happening, Print out the variable: a after it is read in to … Re: Problem i faced with a program Programming Software Development by NormR1 To help you see what is happening, Print out the variable: a after it is read in to show why the loop is repeating. Also change your code to this to see what is happening: [CODE] else if(a == 'g') t1.setChannel(a); else if(a == 'h') t1.setChannel(a); else if(a == 'f') t1.… Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=NormR1;1614461]To help you see what is happening, Print out the variable: a after it is read in to show why the loop is repeating. Also change your code to this to see what is happening: [CODE] else if(a == 'g') t1.setChannel(a); else if(a == 'h') t1.setChannel(a);… Re: Problem i faced with a program Programming Software Development by NormR1 What value was printed out when you printed the contents of a? Did you change your list of if statements as I suggested 2 posts back? Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=NormR1;1614476]What value was printed out when you printed the contents of a? Did you change your list of if statements as I suggested 2 posts back?[/QUOTE] ya i did change the program as u said but theres no change .... the while loop is repeating the 6 println statements 2 more times without waiting for me to give the input.… Re: Problem i faced with a program Programming Software Development by FireBlah Well, I can't help you right now but I saw the problem. The easiest way to figure it out and fix it is to debug it. By the way, why did you create t2 again? You didn't use it so I don't see it's utility anywhere. So, debug it in order to understand what happened Re: Problem i faced with a program Programming Software Development by NormR1 [B]What value was printed out when you printed the contents of a?[/B] [QUOTE]Did you change your list of if statements as I suggested 2 posts back?[/QUOTE] [QUOTE] but theres no change ..[/QUOTE] If you did what I suggested you should get some printout from those printlns. What do you see printed out from the new printlns you added? Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=FireBlah;1614492]Well, I can't help you right now but I saw the problem. The easiest way to figure it out and fix it is to debug it. By the way, why did you create t2 again? You didn't use it so I don't see it's utility anywhere. So, debug it in order to understand what happened[/QUOTE] ill use t2 later ... acutually this was the … Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=NormR1;1614493][B]What value was printed out when you printed the contents of a?[/B] If you did what I suggested you should get some printout from those printlns. What do you see printed out from the new printlns you added?[/QUOTE] same as before ... here is the prntout : C:\Users\dell\java>javac Television.java C:\Users\… Re: Problem i faced with a program Programming Software Development by NormR1 Do you see that when you are reading 3 characters from System.in? The character plus the lineend and the carriage return. Re: Problem i faced with a program Programming Software Development by FireBlah Okay. Well, look at your loop, your if statements. Try to put print statements between your lines (That's what my instructors always tell me). If you don't find anything then, I'm gonna try to see if I can find it for you but it will be by Wednesday. I have to study for 2 exams tomorrow. Good luck! Re: Problem i faced with a program Programming Software Development by DarkPheonix [QUOTE=FireBlah;1614504]Okay. Well, look at your loop, your if statements. Try to put print statements between your lines (That's what my instructors always tell me). If you don't find anything then, I'm gonna try to see if I can find it for you but it will be by Wednesday. I have to study for 2 exams tomorrow. Good luck![/QUOTE] Thanks !! :)…