Jump to content

bkhova211

Members
  • Posts

    19
  • Joined

  • Last visited

bkhova211's Achievements

Newbie

Newbie (1/14)

  1. Hey guys, I have had this nvlddmkm BSOD for about the past month now and I cant find the problem. This is my rig now: Windows 7 Ultimate 64bit Q6600 Go Stepping (No Overclock) 2 x 9800gtx in SLI 500GB Seagate HDD 2 x DVD/CD drives 2 x 2GB OCZ Ram Aprevia 900 Watt PSU I have been looking for the additional nvlddmkm files that windows says that I have that I am pretty sure is causing the problem, but I do not know where else to look. I am currently using the 257.15 beta drivers from Nvidia and the nvlddmkm.sys file in my drivers folder corresponds to that. So I am pretty lost. Any help will be greatly appreciated
  2. yes it is the aprevia warlock series, i didnt think that it would be the power supply since i just finished blowing out all of the dust and stuff about two weeks ago, but the 12V rail stays between 11.98 ~ 12.10 on idle and load. The only other thing that it may be is a HDD firmware update, but i doubt that since I have been using this same setup for about 2 years now and never needed one. Do you have any other ideas and thanks for the speedy response
  3. Hey all, I have been running windows 7 64 bit for about 6 months now, but for the past month i have been getting random freezing and it would not start up sometimes and when it does there would be blue lines and it would freeze again. The rig that I am running is Q6600 Go Stepping (No Overclock) 2 x 9800gtx in SLI 500GB Seagate HDD 2 x DVD/CD drives 2 x 2GB OCZ Ram Aprevia 900 Watt PSU I dont believe that the problem is my CPU as there is no overheating and it stays around 38 degrees. So i figured that there had to be something wrong with the voltage going to my graphic cards. All the voltage readings on my Power Supply are where they are supposed to be and a little bit over in some cases except for my 12v. The lowest I have seen it is at 11.98 which is a very small drop. So I wanted to know if the rare and random time that the 12V line drops to 11.98 is the cause of my freezes. This is the only explanation I have been able to come up with. Thanks for any help in advance
  4. Hey guys, I have to get a new case for my comp since i popped the wires for the power and reset buttons as well as a couple of the fans when doing a little reconstruction. I was looking at the thermaltake Lanbox, but some sites say that it supports ATX and some say only mini/micro ATX. I wanted to get a cube type case this time around, but my current comp consist of: Aprevia 900W Power Supply Evga 780i Mobo Q6600 CPU 2 x Evga 9800GTX 2 x 2 Corsair Ram 500Gb HDD 2 x CD/DVD Burners/Players Does anyone know of a cube case that can hold all of that, or am I better off just purchasing another mid tower case Thanks in advance
  5. Hey all, I have the installation files for windows 7 on my external hard drive and i wanted to know if i would be able to install it onto my desktop. i know that the installation restarts the computer numerous times so would the computer pick up that im installing it from an external device rather than a dvd? thanks
  6. Hey guys i have this assignment and i am completely lost with where i have to go. We have to use arrays to translate pig latin language in a dictionary of words given in a text file. This is what i have now. I attached the txt file and assignment info. Any help will be greatly appreciated. /* ========================================================================== */ /* HEADER FILES */ #include <iostream> #include <fstream> #include <string> using namespace std; /* ========================================================================== */ /* MAIN FUNCTION */ const int MAX_SIZE = 175; const int WORDS_MAX_SIZE = 25; typedef string StringArray[MAX_SIZE]; void PrintIntroduction(); void ReadFile (ifstream&, StringArray, StringArray); void Translate(); int main() { StringArray pigWords; englishWords; int num_words; ifstream inFile; inFile.open("pigData.txt"); if (!inFile) { cout << "The File has Failed to open!\n"; cout << "Hit enter to exit program..." << endl; cin.get(); exit(1); } else { inFile >> num_words; for (int i = 0, i < num_words; ++i); inFile >> pigWords[0]; inFile >> englishWords[0]; } cout << pigWords[0] << endl << englishWords[0]; inFile.clear(); inFile.close(); // print a closing message and exit program cout << "===================================================" << endl; cout << "-===- Pig Latin Translator Completed -===-" << endl; cout << "===================================================" << endl << endl; return 0; } /* ========================================================================== */ /* E N D O F P R O G R A M */ /* ========================================================================== */ pigData.txt p5fa09writeup_3014.pdf
  7. Thanks for the input i changed some things around and i still cant figure out these errors /* ========================================================================== */ /* HEADER FILES */ #include <iostream> #include <ctime> #include <cstdlib> #include <cmath> using namespace std; // Prototypes void Printheading(int money); void PrintPayout(); void GetBet(int money, int& bet); int GetGuess(void); int CalcNewMoney(int money, int bet, int guesses); int PlayAgain(void); int PlayGame(int money); int Start_Balance = 1000; int noOfGuesses = 0; int guess; int check; int random; int GenerateRandomNumber(); double bank, winnings, total; int money = 1000, oldmoney = money; /* ========================================================================== */ /* MAIN FUNCTION */ int main() { srand(static_cast<unsigned>(time(NULL))); { int random; srand(time(NULL)); random = rand() % 100 + 1; } PrintPayout(); { cout << "If you guess correctly within the first 6 guesses, you will" << endl; cout << "win the amount of money you bet divided by the amount of guesses" << endl; cout << "If you don't guess correctly within the first 6 guesses you" << endl; cout << "lose the money that you bet" << endl; } GetGuess(); { if (guess > random) { check = 1; } else if (guess < random) { check = -1; } else { check = 0; } return(); } int PlayGame(); { cout << "-----------------------------------------------" << endl; cout << "Welcome to the High-Low betting game." << endl; cout << "You have $" << Start_Balance << "to begin the game" << endl; cout << "Valid guesses are between the numbers 1 and 100" <<endl; cout << "-----------------------------------------------"; cout << "Would you like to play (y / n)" << endl; cin >> Play; if (Play=='y') { winnings = GetBet/noOfGuesses; cout << "Great! Your payout will be as follows:" << endl << endl; PrintPayout(); cout << "How money would you like to bet?" << endl; GetBet(); while ((noOfGuesses < 7 )) { cout << "Now guess a number between 1 and 100" << endl; cin >> guess; noOfGuesses++; GetGuess(); if (guess == 0) { CalcNewMoney(); cout << "Correct, you win " << winnings << ", your bank is now " << CalcNewMoney << endl; cout << "Do You Wanna Play Again?(Y/N)"; cin >> play; break; } else if (guess == -1) { cout << "Sorry too low try higher" << endl; } else if (guess == 1) { cout << "Sorry too high try lower" << endl; } } } } return 0; } These are the errors: >c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(70) : warning C4244: 'argument' : conversion from 'time_t' to 'unsigned int', possible loss of data 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(100) : error C2059: syntax error : ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(113) : error C2065: 'Play' : undeclared identifier 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(114) : error C2065: 'Play' : undeclared identifier 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(116) : error C2296: '/' : illegal, left operand has type 'void (__cdecl *)(int,int &)' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(121) : error C2660: 'GetBet' : function does not take 0 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(131) : error C2660: 'CalcNewMoney' : function does not take 0 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(135) : error C2065: 'play' : undeclared identifier 1>Build log was saved at "file://c:\Documents and Settings\Bkhova211\My Documents\Visual Studio 2008\Projects\hilo\hilo\Debug\BuildLog.htm" 1>hilo - 7 error(s), 1 warning(s)
  8. Thanks for the reply these are the errors: 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(88) : error C2144: syntax error : 'int' should be preceded by ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(88) : error C2059: syntax error : ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(104) : error C2146: syntax error : missing ')' before identifier 'guess' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(104) : error C2059: syntax error : ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(116) : error C2065: 'Money' : undeclared identifier 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(121) : error C2296: '/' : illegal, left operand has type 'void (__cdecl *)(int,int &)' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(121) : error C2146: syntax error : missing ';' before identifier 'cout' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(122) : error C3861: 'printPayout': identifier not found 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(125) : error C2144: syntax error : 'int' should be preceded by ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(125) : error C2660: 'GetBet' : function does not take 0 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(125) : error C2059: syntax error : ')' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(132) : error C2660: 'GetGuess' : function does not take 1 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(133) : error C2660: 'GetGuess' : function does not take 1 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(135) : error C2440: '=' : cannot convert from 'int (__cdecl *)(int,int,int)' to 'double' 1> There is no context in which this conversion is possible 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(138) : error C2146: syntax error : missing ';' before identifier 'cout' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(139) : error C2065: 'play' : undeclared identifier 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(142) : error C2660: 'GetGuess' : function does not take 1 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(146) : error C2660: 'GetGuess' : function does not take 1 arguments 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(194) : error C2059: syntax error : 'while' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(195) : error C2143: syntax error : missing ';' before '{' 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(195) : error C2447: '{' : missing function header (old-style formal list?) 1>c:\documents and settings\bkhova211\my documents\visual studio 2008\projects\hilo\hilo\hilo.cpp(207) : fatal error C1004: unexpected end-of-file found 1>Build log was saved at "file://c:\Documents and Settings\Bkhova211\My Documents\Visual Studio 2008\Projects\hilo\hilo\Debug\BuildLog.htm" 1>hilo - 22 error(s), 1 warning(s)
  9. Hey guys im trying to make this betting game where the user bets a certain amount of money then the computer randomly picks a number and the player has six chances to guess the number. I cant get it to run because of errors, any help would be greatly appreciated. thanks /* ========================================================================== */ /* HEADER FILES */ #include <iostream> #include <ctime> #include <cstdlib> #include <cmath> using namespace std; // Prototypes void Printheading(int money); void PrintPayout(); void GetBet(int money, int& bet); int GetGuess(void); int CalcNewMoney(int money, int bet, int guesses); int PlayAgain(void); int PlayGame(int money); int Start_Balance = 1000; char doagain; char Play; int noOfGuesses = 0; int guess; int check; int random; int GenerateRandomNumber(); double bank, winnings, total; int money = 1000, oldmoney = money; /* ========================================================================== */ /* MAIN FUNCTION */ int main() { GenerateRandomNumber(); { int random; srand(static_cast<unsigned>(time(NULL))); random = rand() % 100 + 1; GetBet(int money, int& bet) } PrintPayout(); { cout << "If you guess correctly within the first 6 guesses, you will" << endl; cout << "win the amount of money you bet divided by the amount of guesses" << endl; cout << "If you don't guess correctly within the first 6 guesses you" << endl; cout << "lose the money that you bet" << endl; } GetGuess(int guess) { if (guess > random) { check = 1; } else if (guess < random) { check = -1; } else { check = 0; } return (GetGuess); } Playgame() { cout << "-----------------------------------------------" << endl; cout << "Welcome to the High-Low betting game." << endl; cout << "You have $" << Start_Balance << "to begin the game" << endl; cout << "Valid guesses are between the numbers 1 and 100" <<endl; cout << "-----------------------------------------------"; cout << "Would you like to play (y / n)" << endl; Bank = 1000.00; cin >> Play; if (Play=='y') { winnings = GetBet/noOfGuesses cout << "Great! Your payout will be as follows:" << endl << endl; printPayout(); cout << "How money would you like to bet?" << endl; GetBet(int money, int& bet); while ((noOfGuesses < 7 )) { cout << "Now guess a number between 1 and 100" << endl; cin >> guess; noOfGuesses++; GetGuess(guess); if (GetGuess(guess) == 0) { total = CalcNewMoney; cout << "Correct, you win " << winnings << ", your bank is now " << CalcNewMoney << endl cout << "Do You Wanna Play Again?(Y/N)"; cin >> play; break; } else if (GetGuess(guess) == -1) { cout << "Sorry too low try higher" << endl; } else if (GetGuess(guess) == 1) { cout << "Sorry too high try lower" << endl; } } } } return 0; }
  10. Hey all I brought the logitech z-5500 speakers a while back, but someone stole my control pod, so i wanted to know if the control pod that comes with the z-5450 can work with the z-5500 hardware. I been trying to buy a separate control pod for my z-5500 but i can't find any on ebay. Thanks in advance
  11. Hey guys, I will be getting my own apartment while im at school this year and i wanted to know if anyone could tell me an estimated range of the power consumption my build will use for electric bill purposes. Samsung SyncMaster 2370HD 780i evga motherboard 2x evga 9800gtx in sli q6600 O'C at 3.0 using 1.21 volts 4 gigs corsair ram 500 gb 7200rpm western digital Hard drive Any help will be greatly appreciated im estimating around $35 a month averaging idle and load power consumption. Thanks in advance!
  12. Alright to cover the basics im not sure if you guys hardcore game on wii or just casual so to start: Mario Kart Wii, Super Mario Galaxy, and Wii Play(the free wiimote) are must haves. If you want to go more hardcore games like Metroid Prime 3 Corruption, Super Smash Bros Brawl, No More Heroes and Resident Evil 4 Wii Edition are great pickups. That should be good to start off; if there is a specific genre you are looking for just say and i will try to recommend some great games. ---------------- Now playing: Busta Rhymes - Breathin Like That via FoxyTunes
  13. hey guys i have a q6600 go stepping, 2 9800 gtxs, 780i motherboard, and 6 gigs of corsair ram, wat ghz should i overclock my q6600 to so i can prevent bottlenecking or have very little. I am air cooling with the max orb so i know the over clock will have to be modest. This would be my first overclock so any help will be very appreciated. Thanks in advance.
  14. i dont know what type i will get uet since i just ordered it, but it is most likely a go stepping
  15. hey guys wat type of overclock do you think i can get with a q6600, evga 780i mobo, and a thermaltake orb cpu cooler. Also if you can wat settings should i use for my overclocking as this will be my first. Thanks in advance
×
×
  • Create New...