English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Computers & Internet - 11 December 2007

[Selected]: All categories Computers & Internet

Computer Networking · Hardware · Internet · Other - Computers · Programming & Design · Security · Software

clicked on clock and task bar jumped to top of screen. how do i fix it?

2007-12-11 04:25:03 · 6 answers · asked by Joan 1 in Monitors

2007-12-11 04:23:03 · 7 answers · asked by Ken S 1 in Computer Networking

I've searched through a few of the "master the vi editor" sites but can't seem to find out how to use the tabbed functionality like I want to. Note: I'm not referring to the tab button or indenting, but the actual tabs for opening multiple files within a single vi command prompt.

2007-12-11 04:18:21 · 2 answers · asked by Mike 2 in Programming & Design

2007-12-11 04:16:55 · 3 answers · asked by Bill H 1 in Laptops & Notebooks

im typing this from my Wii. I live in P.R. so Olga the storm that is passing here had some a strong gust, and the lights whent out for about 5 minutes, I was playing crysis with my ATI HD 3850 with a 300w PSU and a Pentium 4 proc, i knew i neede more power but i was going to buy a new psu this thursday on CompUSA (i bought my 554ge gateway pc there) because of the clearance. i think i waited too much but the psu was working good with my HD3850 but after the power outage i turned on my pc and the power button kinda flashed/pulsated and the fans where pulsating too and the psu led at the back, no prob i thought, i unplugged it pressed the power button, plugged it again and the same happened i tried another outlet, changed my gpu and it kept the same. i even tried switching the little mobo jumper thingy and it is still the same, even after 4 hours. (if dead) I would like to know wich power supply available in (zip 00617) compusa to buy? (around 500 watts

2007-12-11 04:12:28 · 5 answers · asked by mgsdante 2 in Other - Hardware

import java.io.*;

public class vehicleDriver
{


public static void main(String[]args)
{
vehicle myVehicle = new vehicle();
processMenu(myVehicle.vehicle());
}

public static void displayMenu()
{
System.out.println("Please type your menu choice and press enter.\n");
System.out.println("0. Display Current Vehcile Attributes.\n");
System.out.println("1. Enter Vehicle Make.\n");
System.out.println("2. Enter Vehcile Model.\n");
System.out.println("3. Enter Vehcile Color.\n");
System.out.println("4. Enter Number of Doors.\n");
System.out.println("5. Enter Number of Cylinders in the Engine.\n");
System.out.println("6. Enter Current Speed.\n");
System.out.println("7. Enter To Stop Vehicle.\n");
System.out.println("8. Enter To Speed Vehicle Up.\n");
System.out.println("9. Enter To Slow Vehicle Down.\n");
System.out.println("10. Enter To Open Doors.\n");
System.out.println("11. Enter To Close Doors.\n");
System.out.println("99. Enter To Quit Vehicle Application.\n");
}

public static void DoorConfig(boolean[] isDoorOpen, int doors)
{
for(int i = 0;i < doors; i++)
{
if(isDoorOpen[i] = false)
System.out.println("Door is Closed.");
else
System.out.println("Door is Open.");
}
}

//Create BufferedReader for keyboard input
private static BufferedReader stdin = new BufferedReader( new InputStreamReader( System.in ));


public static void processMenu(vehicle myVehicle) throws IOException
{
//Declare variables
boolean isDoorOpen[] = new boolean[10];
String input = "";
int number = 0;
int choice = 0;

//Set doors to closed by default
for(int i = 0; i < isDoorOpen.length; i++)
isDoorOpen[i] = false;



//Loop through menu until quit is chosen
while(choice != 99)
{
displayMenu();
System.out.println("Enter menu option now: ");
input = stdin.readLine();
choice = Integer.parseInt( input );

switch(choice)
{
case 0: System.out.println("The Vehicl Attributes are:");
System.out.println("\nMake: " + myVehicle.get_vehicleMake());
System.out.println("\nModel: " + myVehicle.get_vehicleModel());
System.out.println("\nColor: " + myVehicle.get_vehicleColor());
System.out.println("\n#Doors: " + myVehicle.get_vehicleNumOfDoors());
System.out.println("\n#Cylinders: " + myVehicle.get_vehicleNumOfCylinders());
System.out.println("\nSpeed: " + myVehicle.get_vehicleSpeed() + "\n");
DoorConfig(isDoorOpen, myVehicle.get_vehicleNumOfDoors());
break;

case 1: System.out.println("Enter a new make: ");
input = stdin.readLine();
myVehicle.set_vehicleMake(input);
System.out.print("Vehicle's make is now " + myVehicle.get_vehicleMake() + "\n");
break;

case 2: System.out.println("Enter a new model: ");
input = stdin.readLine();
myVehicle.set_vehicleModel(input);
System.out.print("Vehicle's model is now " + myVehicle.get_vehicleModel() + "\n");
break;

case 3: System.out.println("Enter a new color: ");
input = stdin.readLine();
myVehicle.set_vehicleColor(input);
System.out.print("Vehicle's new color is " + myVehicle.get_vehicleColor() + "\n");
break;

case 4: System.out.println("Enter a number of doors: ");
input = stdin.readLine();
number = Integer.parseInt( input );
myVehicle.set_vehicleNumOfDoors(number);
System.out.print("Vehicle now has " + myVehicle.get_vehicleNumOfDoors() + " doors\n");
break;

case 5: System.out.println("Enter a number of cylinders: ");
input = stdin.readLine();
number = Integer.parseInt( input );
myVehicle.set_vehicleNumOfCylinders(number);
System.out.print("Vehicle now has " + myVehicle.get_vehicleNumOfCylinders() + " cylinders\n");

case 6: System.out.println("Enter number for current speed: ");
input = stdin.readLine();
number = Integer.parseInt( input );
myVehicle.set_vehicleSpeed(number);
System.out.print("You are now going " + myVehicle.get_vehicleSpeed() + "mph\n");
break;

case 7: System.out.println("Stopping vehicle, You will be slowing down by 1 mph\n");
number = myVehicle.vehicleStop();
System.out.println("Vehicle has stopped after slowing down from " + number + "mph\n");
System.out.print("Current speed is: " + myVehicle.get_vehicleSpeed() + "mph\n");
break;

case 8: System.out.println("Enter how fast you want to go: ");
input = stdin.readLine();
number = Integer.parseInt( input );
System.out.print(myVehicle.get_vehicleModel() + " current speed is " + myVehicle.get_vehicleSpeed() + "\n");
int temp = myVehicle.vehicleAccelerate(number, isDoorOpen);
System.out.print("Vehicle sped up to " + myVehicle.get_vehicleSpeed() + " after accelerating "+temp+"mph\n");
break;

case 9: System.out.println("Enter how much you would like to slow down to: ");
input = stdin.readLine();
number = Integer.parseInt( input);
System.out.print(myVehicle.get_vehicleModel() + " current speed is " + myVehicle.get_vehicleSpeed() + " mph\n");
temp = myVehicle.vehicleSlowDown(number);
System.out.print("Vehicle slowed down to " + myVehicle.get_vehicleSpeed() + " after slowing down " +temp+" mph\n");
break;

case 10: System.out.println("Enter a door number you want to open: ");
input = stdin.readLine();
number = Integer.parseInt( input );
System.out.print("Doors open or closed before opening chosen door\n");
DoorConfig(isDoorOpen, myVehicle.get_vehicleNumOfDoors());

isDoorOpen = myVehicle.door_open( number, isDoorOpen);

System.out.println("\nDoors open or closed after opening chosen door\n");
DoorConfig(isDoorOpen, myVehicle.get_vehicleNumOfDoors());
break;

case 11: System.out.println("Enter door number you would like to close: ");
input = stdin.readLine();
number = Integer.parseInt( input );
System.out.print("Doors open orclosed before closing chosen door\n");
DoorConfig(isDoorOpen, myVehicle.get_vehicleNumOfDoors());

isDoorOpen = myVehicle.door_closed(number, isDoorOpen);

System.out.print("\nDoors open or closed after closing chosen door\n");
DoorConfig(isDoorOpen, myVehicle.get_vehicleNumOfDoors());
break;

case 99: System.out.println("\nQuit opting was chosen, quitting vehicle application, please wait\n");
break;

default: System.out.println("incorrect value, Enter only available menu options.");
}//end of switch case\\
}//end of while loop\\
}
}

2007-12-11 04:11:04 · 1 answers · asked by mattjcook07 2 in Programming & Design

How do i turn a double into an int so I an use it with a while ( boolean ) statement?

Ex:
double percent
.
.
.
while ( percent > 60)

2007-12-11 04:10:08 · 2 answers · asked by Anonymous in Programming & Design

because my freinds say thats is illegal to use it. becuz i am not payin for it

2007-12-11 04:02:18 · 6 answers · asked by Anonymous in Laptops & Notebooks

Dell came out and swapped the motherboard, since the connection is intagrated. But, as per dell tech support, no change....Any ideas what this could be and how to fix it???

2007-12-11 04:01:20 · 1 answers · asked by jets_in_2003 3 in Computer Networking

Bought a new computer yesterday and the whole yahoo site works really badly with it- was fine with windows xp.

2007-12-11 04:00:44 · 4 answers · asked by brainlady 6 in Software

http://www.newegg.com/Product/Product.aspx?Item=N82E16811144157

This is a link to my PC case. My house is always dusty no matter how much I vacuum so don't criticize that but I really want to eliminate the dust that gets caked in my machine what kind of fan filters would I need for this case and where can I buy them? Thanks for your help.

2007-12-11 03:55:51 · 5 answers · asked by Anonymous in Desktops

Anyone know if there is a way to execute a program from a batch file and then continue executing the batch file?

I tried executing the program from a separate batch file and using "Call" to call that batch file, but the batch job just waits for this program to be closed before continuing.

I need the program to execute and remain running while the batch file continues...

2007-12-11 03:54:53 · 2 answers · asked by Shwaa 6 in Programming & Design

ive had a new laptop and ive entered me product key for microsoft powerpoint aint working.

2007-12-11 03:53:57 · 1 answers · asked by Anonymous in Software

I have to copy and paste this whole web screen from my results mypyramid.gov game into a word document for a final but I CANNOT figure out how to do it. When the results show up there is no File etc. bar at the top. please help.

2007-12-11 03:49:51 · 12 answers · asked by brainstewie 3 in Other - Computers

2007-12-11 03:47:19 · 9 answers · asked by Anonymous in Software

2007-12-11 03:45:59 · 2 answers · asked by alfred d 1 in Software

what is a good music program that i can use and that is for beginners? if i make music with it, would i be able to sell it or would it be copyright?

any advice

2007-12-11 03:43:46 · 1 answers · asked by danny f 1 in Software

I want to buy a Mac, but I'm scared, now! See this thread in Ars Technica, and tell me whether you've experienced the same thing, oh please, oh please! http://forums.appleinsider.com/showthread.php?t=81413

2007-12-11 03:42:48 · 3 answers · asked by fjpoblam 7 in Laptops & Notebooks

A colleague and I discovered that the computer that had the drivers for the printer was not connected to the printer. He switched the towers so that he could access the printer. What he discovered was that the tower with the drivers for the printer had a virus. We found out that the computer has Symantec on it so he ran an upgrade from online .A while ago he went to use the computer again and was checking for the virus to find out if it is gone. What is happening now is that a red light is blinking and the computer is emitting an annoying beep. Is this normal when a diagnostics is being run? How can we get rid of this annoyance and debug the computer?Please help me urgently .

2007-12-11 03:33:57 · 3 answers · asked by Aoiffe337 3 in Other - Computers

I have a Mac OS 9, so it's an older Mac computer. When we first got it, it worked just fine. Now it's very slow and when we got on the internet it just shuts down or it freezes really easily. It always says we're low on memory. We want it to stop doing that and hopefully become a bit faster too. Any suggestions?

2007-12-11 03:31:02 · 6 answers · asked by Evil Tuffy 3 in Desktops

I have MS Office 2003 on my computer, but a trial version of Office 2007 came on the computer. When someone recently e-mailed me a Word document in the 2007 form, my computer began to automatically open all my Office documents in 2007. How do I make these documents open in 2003 once again?

2007-12-11 03:27:59 · 3 answers · asked by Anthony 1 in Software

2007-12-11 03:21:30 · 16 answers · asked by Anonymous in Software

2007-12-11 03:19:55 · 4 answers · asked by Anonymous in Security

Is there a special microphone i should buy?
Do i need a sound card other than the one i got with my motherboard (intel dg33bu)?

I already have a recording microphone( Behringer) but even on the loudest volume level the sound is very faint and i have to scream into to actually hear a sound...

2007-12-11 03:18:22 · 3 answers · asked by bornconfused 1 in Add-ons

i use blogger. i would like to know how to put a logo as a background of a blog. i want the logo to be in the centre of the blog.

2007-12-11 03:15:01 · 3 answers · asked by dark_childz56 1 in Programming & Design

i have photoshop elements. its amazing if you need help just ask me! i'll even do it for you if you want.

2007-12-11 02:54:46 · 1 answers · asked by Anonymous in Software

I recently got a wireless system so I can run both my laptop and desktop off the same system. The problem has become that when I cut off the desktop computer my wireless doesn't want to work anymore? The desktop is what the wireless was set up through though. Does anyone have any idea why this would happen? Any help would be greatly appreciated. I just set up everything as the box said don't really see why this would happen. Any suggestions let me know.

2007-12-11 02:45:36 · 3 answers · asked by Anonymous in Computer Networking

My computer's hard drive broke and i had to get a new one. I have a HP Pavilion 551w. I gave it to best buy to put in a new one. But now it's just a blank hard drive. A friend of mine has a XP restore CD and would let me use it. I just wanted to be sure that I was able to restore my computer, since mine didn't come with a restore CD and I can't order one from HP, believe me I have tried. Any suggestions are welcomed. Help me if you can.

2007-12-11 02:40:18 · 7 answers · asked by F_Fifteen_Eagle 1 in Software

it would be good if it was anonymous in the url..

2007-12-11 02:20:05 · 7 answers · asked by Anonymous in Computer Networking

Can anyone tell me where I can purchase at good price?

2007-12-11 02:13:48 · 10 answers · asked by scottie 4 in Security

fedest.com, questions and answers