spin.vbx file in windows system Hardware and Software Microsoft Windows by Laino … my new computer which has Vista. Starting the program requires 'spin.vbx' file which is located in Windows\system directory in… help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by badbmw …cd drive has started acting up lately. It will spin and read any original cd i place in; …however, it will not spin any burned discs that i place. I don'…a problem with the burned discs themselves because they spin perfectly well in my work computer. when i…makes a funny sound as if it trying to spin, but it can't. when i replace … Help with Spin Function Linked List Programming Software Development by h0neydip …; class wheel { private: wheel_ptr arrow; public: wheel (); void print (); void spin (int distance); void move_to (int number); }; [/code] The constructor wheel… the arrow pointer the given number of nodes. Thus, if spin was called with 2, arrow would move ahead to point… slotmachine reel spin simulation Programming Software Development by dvsConcept … string reelArray[7]; int reel1; int reel2; int reel3; int spin = 0; reelArray[0] = "[ LEMON ]"; reelArray[… 7 if(reelArray[i] == (reel1 - 1)) { spin++; cout<<reelArray[i]<<' '<<…cout<<reel3<<endl;//testing output switch(spin) { case 0: Sleep(100); break; case … Re: slotmachine reel spin simulation Programming Software Development by dvsConcept … reelArray[7]; int reel1; int reel2; int reel3; int spin = 0; reelArray[0] = "[ LEMON ]"; reelArray…[reel2 - 1] || reelArray[i] == reelArray[reel3 - 1]) { spin++; cout<<reelArray[i]<<' '<<reelArray…; cout<<reel3<<endl; switch(spin) { case 0: Sleep(100); break; case … Re: Help with Spin Function Linked List Programming Software Development by Lerner The spin could readily be represented by a loop that advances a pointer starting at a given location certain number of times. I'm less certain how you will determine how many nodes there are to be in the wheel. 5 SATA drives on Raid won't all spin up Hardware and Software Hardware by memymo … some reason, I can't get all the drives to spin up. I generally get the controller to recognize 2 drives… 530w would be fine, no? Also, why would some drives spin, and other not? Could the power supply be "partially… A Random Spin Button (Python and Tk) Programming Software Development by vegaseat … button surrounded by labels to create the feeling of a spin animation. This example uses the Tkinter GUI and lets you… No POST, no beeps, no monitor input, fans spin etc. Hardware and Software Hardware by kingston … powered on, all fans (case, cpu and graphics card fans) spin and the hard drive also makes the standard sounds. However… unfortunately this didn't help. So, in short: - All fans spin - Keyboard, mouse and monitor receive no power - No POST beeps… Javascript Spin Control Help Please Programming Web Development by grabit Hi Folks I am trying to add a spin control to my quantity field before i add the ordered … number eh#$@#$@) This the [code] <head> Code <!---sPIN BUTTONS TO UP QUANTITY---> <script type="text… Hard Drive won't spin when IDE is attached Hardware and Software Hardware by awk316 Hi All, I just installed a new mobo/cpu and my hard drive won't spin when the IDE is attached. As soon as I unplug it, it spins. My fans are all working and I've tried switching IDE cables. Power supply problem? Bad mobo? I've seen this thread in the past, but never seen it resolved. Any help would be greatly appreciated. Re: Hard Drive won't spin when IDE is attached Hardware and Software Hardware by awk316 I don't even get that far. When the hard drive spins w/o IDE or doesn't spin w/ IDE, the BIOS doesn't come up. My monitor maintains "No Input." Thanks for the reply! Power on fans spin but no post HELP PLZ Hardware and Software Hardware by sg18sg18 … like half a sec, just a flash of blue and spin, then stopped, but still wouldnt power on afterwards, and still… Is it possible that a motherboard fan will not spin because of a broken CPU? Hardware and Software Hardware by jo2995 Is it possible that a motherboard fan will not spin because of a broken CPU? Or would it be the mobo's fault? Re: Is it possible that a motherboard fan will not spin because of a broken CPU? Hardware and Software Hardware by caperjack [QUOTE=jo2995;565911]Is it possible that a motherboard fan will not spin because of a broken CPU? Or would it be the mobo's fault?[/QUOTE] no,its either a bad fan or a bad power supply,and /or non-working motherboard, .no power going to fan .not the actual CPU Re: Is it possible that a motherboard fan will not spin because of a broken CPU? Hardware and Software Hardware by jo2995 Okay. Thank you everyone. Because I took off the heat sink and powered on (dangerous I know!) to troubleshoot a machine that didn't post and whose fan didn't spin. The CPU didn't get hot at all, so its a bad mobo, right? western digital doesn't spin up any more Hardware and Software Hardware by MpG …;]Now I power it on but it doesn't even spin up and the circuit plate underneath just gets hot[/COLOR… Re: Dead pc. No beep, no hd spin... Naddah Hardware and Software Hardware by Pjieter … is as you describe it ('dead, no beep, no head spin') I would conclude that your PSU is dead, or your… Re: help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by Thong_Ispector Question, are these RW or possibly DVD discs Some drives do not support CD-RW If you are using DVD's there are plus and minus issues No added lables I assume... Very odd... Re: help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by wazzup08 I have that exact same problem! it's a real pain and I would appreciate it very much if someone told me a solution to this problem, I've been searching around on the internet lots and I still can't seem to find a solution :(. Re: help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by jbennet i found that drives wear out. First they stop doing dvds, then rws, then rs Re: help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by dcc Does this happen with other media that you have recorded, CD-R, CD+R? jbennet...your problem sounds more like firmware. Re: help!! cd drive won't spin burned discs but ok for original discs! Hardware and Software Hardware by jbennet this has happened on numerous drives of different brands on numerous machines - laptop and budget drives go first. seems they wear out after time as they find it hard to read certain disks. Also, anyone who owns a PS2 will aware of this problem Re: Help with Spin Function Linked List Programming Software Development by h0neydip there are 20 nodes in this example, how would the loop look like Re: Help with Spin Function Linked List Programming Software Development by Lerner int spinDistance = 2; for(int i = 0; i < spinDistance; ++i) ++arrow; Re: slotmachine reel spin simulation Programming Software Development by vmanes do you have #include <string> ? This is a problem [code] if(reelArray[i] == (reel1 - 1)) [/code] You're comparing a string to an int - not gonna work, not making any sense. Do you mean to be comparing reelArray[i] to reelArray[reel1] ? Re: slotmachine reel spin simulation Programming Software Development by dvsConcept [QUOTE=vmanes;820218]do you have #include <string> ?[/QUOTE] yes Re: slotmachine reel spin simulation Programming Software Development by dvsConcept i have: #include<iostream> #include<string> #include<ctime> #include<windows.h> Re: slotmachine reel spin simulation Programming Software Development by dvsConcept [QUOTE=vmanes;820218]do you have #include <string> ? This is a problem [code] if(reelArray[i] == (reel1 - 1)) [/code] You're comparing a string to an int - not gonna work, not making any sense. Do you mean to be comparing reelArray[i] to reelArray[reel1] ?[/QUOTE] let me see..... Re: slotmachine reel spin simulation Programming Software Development by vmanes [code] cout<<reelArray[i]<<' '<<reelArray[i]<<' '<<reelArray[i]<<endl; [/code] You're telling it to display the same thing three times! [code] reel1 = 1 + rand()%(max - 1 + 1);//RNG 1 through 7 [/code] Why the adding and subtracting 1 to max? Net effect is 0 change. Then you have to subtract 1 when …