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

Computers & Internet - 11 July 2006

[Selected]: All categories Computers & Internet

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

2006-07-11 09:35:47 · 1 answers · asked by Chaserulz10 1 in Internet

Do i need to purchase the original game in order to play the newest one? Can i also add all the expansions? Do they have to be in order?

2006-07-11 09:35:18 · 5 answers · asked by Nat 5 in Internet

A freeware/ shareware application and link would be much appreciated. I need to close about 12 programs each time before I game to maximize performance.

Thank you for your time.

2006-07-11 09:34:35 · 2 answers · asked by jueyanz 3 in Software

can anyone tell me 1) a good free linux to download(include a direct link if possible) and 2) once downloaded how to burn it to disc
i have great knowledge of burning discs,but not of burning a linux disc,i.e i need to know....do i have to make it bootable?
can you just give me a guide on what to do,it will just be a change to xp!
thanks

2006-07-11 09:33:25 · 5 answers · asked by brianthesnail123 7 in Software

2006-07-11 09:30:06 · 1 answers · asked by Clow45 1 in Security

2006-07-11 09:30:02 · 2 answers · asked by Anonymous in Computer Networking

I sign in and in flashes back and forth between signing in and welcome. I don't know what to do. I've reinstalled it like four times and it still won't work

2006-07-11 09:26:58 · 4 answers · asked by Anonymous in Other - Computers

i tried pasting the url code in the photo space but it wont work that way

2006-07-11 09:26:27 · 2 answers · asked by El Duderino 6 in Internet

2006-07-11 09:25:23 · 10 answers · asked by Anonymous in Internet

Please:(

2006-07-11 09:24:17 · 3 answers · asked by Sophie S 1 in Internet

2006-07-11 09:23:33 · 5 answers · asked by mellflores1 2 in Internet

what is the best stuff to get for your computer? the best type of cam? how do cams work?

2006-07-11 09:22:59 · 4 answers · asked by Anonymous in Computer Networking

My OS is XP home edition. I have not downloaded SP1 or SP2 for fear it will cause more problems than it's worth. I have a HP Pavilion 7955 and use the free AVG, Ad Aware, and Zone Alarm. Thus far I have had no problems.

I recently installed a 250GB HDD as my "secondary" drive for use primarily to store digital video that I'm downloading for my VHS and 8MM tapes. My OS is on a 40GB HDDD that is nearly full.

However, as you may know, I can only access 137GB of this 250GB HDD. I understand the reason....I believe.

But, my question is this: Can I use Norton Partition Magic 8.0 to partition this secondary drive to enable me to see the whole 250GB?

I am told SP1 would enable me to see the "see" the full 250GB.....but SP1 is not available now as a separate download now (at least I can't find it). It's now a part of SP2 and this must be downloaded in order to get SP1.

HP said if I downloaded SP2 several things may quit working.....including the "System Restore" function.

2006-07-11 09:22:32 · 3 answers · asked by Im2hard2please 2 in Software

how do you make your own website from scratch? i need ideas and answers.

2006-07-11 09:21:49 · 11 answers · asked by Anonymous in Programming & Design

2

how do you get the best stuff to protect your computer? so people can't hack into it.

2006-07-11 09:20:50 · 5 answers · asked by Anonymous in Security

I also deleted my Windows XP.Home Edition by mistake, What should I do?

2006-07-11 09:19:44 · 3 answers · asked by Julio P 1 in Programming & Design

2006-07-11 09:19:39 · 6 answers · asked by Questioner 2 in Other - Computers

I just got a new game, but it tells me that the graphic card is too old... In order to get a new one, do I have to pay for it? Is there anyway to get one for free (thats not illegal)...?

2006-07-11 09:11:21 · 5 answers · asked by Adam 2 in Software

2006-07-11 09:10:41 · 11 answers · asked by Anonymous in Software

how do i access my home pc from any other computer... in the world, say, is there a software for the process?

2006-07-11 09:08:03 · 5 answers · asked by ITGREAMO 2 in Internet

//Sample program to read input file and perform calculations with interactive values.
//Print out a table with input and calculated values.
#include
#include
#include
#include
using namespace std;

void GetRates(float&, float&, float&, float&);

enum Vehicles{MOTORCYCLE, CAR, BUS, TRUCK};



int main()

{
float cycleRate;
float carRate;
float busRate;
float truckRate;
char code;
int weight;
ifstream inFile;
Vehicles typeCode;



inFile.open("file1.dat");
if(!inFile)
{
cout<<"Unable to open input file, program abnormally ended"< return 1;
}

GetRates(cycleRate, carRate, busRate, truckRate);
cout< cout<
inFile>>code>>weight;

while(inFile)


{
if(code=='m')
typeCode=MOTORCYCLE;
else if(code=='c')
typeCode=CAR;
else if(code=='b')
typeCode=BUS;
else if(code=='t')
typeCode=TRUCK;
inFile>>code>>weight;

}

switch(typeCode)
{
case MOTORCYCLE:cout<<"MOTORCYCLE";
break;
case CAR:cout<<"CAR";
break;
case BUS:cout<<"BUS";
break;
case TRUCK:cout<<"TRUCK";
break;
default:cout<<"Error: Invalid Vehicle Type";

}

{
if(code=='m')
cout< else if (code=='c')
cout< else if(code=='b')
cout< else if(code=='t')
cout< else
cout< return 0;
}

}





void GetRates(/*out*/ float& motorcycleRate,
/*out*/ float& carsRate,
/*out*/ float& busesRate,
/*out*/ float& trucksRate)
{


bool invalidData;
invalidData=true;
while(invalidData)
{
cout<<"Enter the tax rate for MOTORCYCLES(0.01-0.99)"< cin>>motorcycleRate;

{

if(0.009<=motorcycleRate&&motorcycleRate<=0.999)
invalidData=false;

else

cout<<"Warning: entry invalid, rate must be between 0.01 and 0.99"<
}
}
invalidData=true;
while(invalidData)
{

cout<<"Enter the tax rate for CARS(0.01-0.99)"< cin>>carsRate;
{
if(0.009<=carsRate&&carsRate<=0.999)
invalidData=false;

else

cout<<"Warning: entry invalid, rate must be between 0.01 and 0.99"<
}
}
invalidData=true;
while(invalidData)
{
cout<<"Enter the tax rate for BUSES(0.01-0.99)"< cin>>busesRate;
{

if(0.009<=busesRate&&busesRate<=0.999)
invalidData=false;

else

cout<<"Warning: entry invalid, rate must be between 0.01 and 0.99"<
}
}
invalidData=true;
while(invalidData)
{

cout<<"Enter the tax rate for TRUCKS(0.01-0.99)"< cin>>trucksRate;
{

if(0.009<=trucksRate&&trucksRate<=0.999)
invalidData=false;

else

cout<<"Warning: entry invalid, rate must be between 0.01 and 0.99"<
}


}

}

2006-07-11 09:07:55 · 4 answers · asked by jdegbor 1 in Programming & Design

hey....plz help me out..

2006-07-11 09:05:26 · 3 answers · asked by sal 2 in Other - Computers

I need it mostly for school work, research, etc. I need it to go pretty fast. I dont know anything about computers, so I dont know what GB or any of that stuff is. What should I look for? my budget is about $500-$600.

2006-07-11 09:05:12 · 5 answers · asked by Anonymous in Other - Computers

I knew how but forgot what to do and have tried for HOURS lol, everytiime I download something new on limewire that I like I want to put it onto or transfer it to my ipod, is it imprt or exprt files? I look in limewire fles they all keep coming up as text or .xml etc they never used to anyone have ideas how t add limewire music to my ipod thanks for your help if you want to walk me through it I am on yahoo IM as pandorasblonde thanks again!!

2006-07-11 09:01:40 · 3 answers · asked by Anonymous in Programming & Design

fedest.com, questions and answers