This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 8051. |
Solve : stumped on sata? |
|
Answer» Good day, Replace both STA cables 1st... Power and dat cables...use new ones. ok, i'll do just that when i get home. But i remembered putting the plug back to sata1 port after it died out a second time connected via sata2 for some time. Also connected it to another power cabling at the same time. I'll leave it to work overnight later. i also cant find the psu brand name, so i guess it's a generic one; since it is a custom made machine.I have found that sometimes SATA cables don't make a tight enough fit on the hard drive or motherboard. You can tighten them with a thin piece of paper or plastic slipped behind the connector. I use the Post-It plastic page markers, cut to fit. I have a motherboard & a hard drive that exhibit this behavior. Sometimes a different cable will work.Thank u for the suggestions. Did every tip and now i im running simultaneously two sata and two ide; all passed overnight testings. The satas needed the cable with snap on clips and taped em secure just to be double sure. Im still observing if the sata hdd sustained damage from those times it died out. Much gratitude, keep on HELPING Good news...keep us posted... |
|
| 8052. |
Solve : will not boot - stumped? |
|
Answer» i can not boot from my hard disk. Witherspoon source codeMy metaphor has caused confusion. Witherspoon stars in the move 'Source Code.' Sorry, did not want this to become a movie review. Great movie. If you like far out. Has a cleaver ending. What I meant was that it is hard to know what a windows program really does unless you are really deep into it with extreme tools. Some, eave all, BIOS calls can be intercepted by the OS. To workaround this, software engineers have things that hackers only dream about. Don't be surprised that things do not work as you might expect down at the very low machine level code that could potentially alter the OS. However, you now have the OS working normally? yes, after i ran fixboot, it came right back. Quote from: alexlauf on October 31, 2011, 07:13:23 PM yes, after i ran fixboot, it came right back.Do you mean fixbnoot worked and later you did a reboot and windows 2000 did not come up? Did you get a specific error message or just a black screen? Have you used the WD HDD diagnostic program? http://support.wdc.com/product/download.asp?groupid=606 Quote from: alexlauf on October 31, 2011, 02:29:40 PM i was stalled out because i want scrolling, as 32 bit scrollbars and 64 bit sized hard disks don't mix. instead of setting the scrollbar min/max and value properties directly to the hard disk size, use a scaled value, so that it fits within the scroll bar range. Also, regarding your writing to the boot sector, remember that while reads from a physical device work in a buffered manner, usually you'll need to use FILE_FLAG_NO_BUFFERING in the call to CreateFile() in order to be able to properly write the sector data to disk. Also, when you are doing direct disk I/O, you have to seek, read, and write in multiples of the sector size of the device, and on sector boundaries. you'll need to be using DeviceIoControl() with IOCTL_DISK_GET_DRIVE_GEOMETRY to get the bytes per sector, sectors per track, number of sectors, etc. so you can compute the size of the buffer you need to use. i thought it was clear from the various postings, but, here it is the full sequence. 1. was working with my home brew program to edit hard disks. i used it on my boot sector. it seemed ok. 2. later when i re-booted ( quite a while, this thing runs for days sometimes ), it would not come up. got to the verifying dmi pool message, and it stopped there. no extra beeps or messages. 3. tried to figure out problem, including things like swapping disks, changing bios settings. one thing i tried was i modified the boot to display a message if it loaded, not realizing the disk editor was probably the cause of the problem ( i had forgotten using it before the crash ). 4. no message resulted from above so i concluded it was not loading the boot sector. at this point i was stumped. did not see any point in trying to fix the boot sector, since the data itself was ok. i then tried this forum for help. 5. was told to try recovery console fixmbr and fixboot. 6. my initial thought was phooey! since the data was ok, what was the point of trying to fix it ? but i got desperate enough to try it. 7. i ran fixboot. then i rebooted. 8. that fixed the machine. it booted after that. 9. my conclusion is i had done it to myself, and my program does something to the sector / disk that i have not currently figured out. about the program itself; 1. "instead of setting the scrollbar min/max ... use a scaled value" - i thought of that, but i do want it to be 1-1, 1 byte to 1 click. otherwise, just mapping 1 scroll unit to 1 sector, 512 / sector, i could get to either 1 or 2 TB sizes ( i forget if scrollbars are signed or unsigned right now ). that would probably be enough, if that was what i wanted. 2. as for seek, multiples of sector size, boundrys, , devicei/o, etc, i did all that, with the exception of the "FILE_FLAG_NO_BUFFERING" flag. i assumed it flushed everything on closing. other than the central mystery involving the boot sector, it seems to do ok. might not be a bad idea to put it in, if i keep using this method. but unless i figure out what is going on with writing the boot sector, i might have to find another way to do it.WOW! You are a BRAVE soul! You have already verified and tested hour code on other drives? Specifically, have you tried much smaller, much oder drives with more 'conventional' drive geometry? Part of the problem is the definition of hard drive sector location is still haunted by the legacy definitions that go back to IBM's old ideas about how you find a lotion on the hard drive. I think I used to know what that was, but strains my brain trying to remember how it goes. EDIT: The link below is just none of many, many references to the headache of sector translation. The problem never went away. Likely you are aware of it. http://www.dewassoc.com/kbase/hard_drives/resolving_drive_barriers.htm The 512 byte sector no longer exists. Not on large hard drives. http://en.wikipedia.org/wiki/Disk_sectorit has been tried on 3 drives so far, an 80 GB ( the one i crashed ), a 500 GB, and a 340 GB that i am trying to diagnose a file system problem with. i have no plans for anyone else to use it, so i don't need to be really rigorous with the testing. basically it works, until it fails, then i fix it. if i stay with sector boundrys and sector sizes ( the one reported to me by DeviceIoControl ) it seems to work ok, other than that #$#%^ boot sector. i suspect that it would work on any drive the OS can handle. i just seek to ( sector size ) * ( assumed sector number ), and it finds it. none of that stuff with no sector 0, which track is it, or any of that. using createfile and treating it like just another file, a lot of that sector location junk gets handled by the OS. it really doesn't matter what real sector i am in, as long as the same call to seek can put it on the same spot consistantly. the drive might translate sectors around, but if it is transparent to the OS, i don't really care what it is doing either. after all, the whole point of an OS is to make it easier to work with the thing, not to send our money to microsoft. let windows do all the dirty work. i'll worry about cases where windows can't deal with it, when it happens. earlier on, i wanted absolute control over which sector, track, head i was at, but the point of this thing is drive exploration at the level the OS sees, so i went with the easiest course. later, if i get into any deep drive work, where it matters exactly what track, sector, head i am at, i might tackle that again. i have heard 512 no longer exists, but if the OS is happy thinking it is still 512, i can work with it. i go with whatever it thinks it is using. i'm not so much brave, as old. i used to write low level format assembly programs for my trash-80. and in those days low level was LOW LEVEL. if i could overcome my AADD long enough to learn write a kernal mode program, i'd be working with the drive controler for this stuff, instead of having windows do the work. . of course, if i could do that, i'd get myself up to date, and get a good computer job somewhere too. by the way, how does this forum assign levels ? i could have sworn i picked something higher than noobie ? my knowledge may be scattered and piecemeal, but i've been around the track a few times. or was that reflecting experience with this forum ? |
|
| 8053. |
Solve : Connecting two PC towers? |
|
Answer» Hello Since your machines are only 8' apart, and you don't seem to have a problem running a cable between them, a wired router is your best solution. Some name brand wired routers are as little as $25. That plus a DVD/CD drive is by far your best long term and most flexible solution. OK, thanks, but how does that WORK? I have a broadband cable/wireless router at the moment (I don't use the wireless facility). So I need another router that the old PC connects to? And then, through the router I connect the two PCs? Surely I need an ethernet cable to connect the two machines? Sorry for my naivete - never done it before. I do not need to connect the old PC to the Internet and I have only one screen. I just WANTED to be able to access the drives and files on my old PC through my new one and to see them on this one screen. I will think about a RW/CD later. Thanks.If you have a combination cable modem/wireless router, check to see if it doesn't have a couple of RJ45 jacks on it. If it does, all you need is two ethernet cables from those jacks to each computer and your in business. Otherwise you will need wireless adapters for each computer.Oh, right. thanks a lot. Yes there are spare sockets on the router. I'll try it. |
|
| 8054. |
Solve : Building a new computer ( Help me ^__^ )? |
|
Answer» Well this is my first time building a computer and it's pretty exciting. |
|
| 8055. |
Solve : RAM crashing computer, this is probably simple fix.? |
|
Answer» Hey guys, I could use some help with my RAM. It is 1600mhz, but if I have the speed set at 1600mhz in the bios and boot up, my computer will turn off and restart when playimg a game for a few minutes. However if I set the speed to 1333mhz it will never crash. What are the temperature ranges RAM should have? For CPUs, max at about 70C For RAM, more around 60C. Quote Use SpeedFan... Already been stated.i've never seen the cpu over 55 or the mobo over 50, using the software that came with the mobo. those are the only 2 temps it shows. Quote i've never seen the cpu over 55 or the mobo over 50 Hmm. That seems normal. You said it occurs during games. From my experience, the hardware most likely to fail in a computer, is the graphics card (especially NEWER ones). You should also do a video card benchmark when the RAM is set to the lower speed and see if you can still get it to crash. If so, then you have DETERMINED that the problem is most likely the video card. Download FurMark and run a stability test on the machine when you have access to it. Leave it on for a good 20mins at least and see if it crashes.I've ran it at 800mhz before and you can see a big difference in performance, but it doesn't crash, nor does it crash at 1333 or 1412mhz (I have it a little overclocked right now so i can get a little more than 1333mhz without it failing, if I have it OC'ed from 1333 to like 1466mhz it will fail, but not 1333 to 1412). technically its not overclocking because the RAM is 1600mhz though, but it fails at that.Ok, but I think you should still give FurMark a try.I ran furmark with the two presets and one with 1080, 8x aa, and all the options save dynamic camera. I also ran a burn test with the same setting as the custom for an hour. The gpu temp rose to 36C after 2 minutes, then stayed there for the next hour. I really think the problem is with the DRAM Voltage, as the computer is only a few months OLD and this has been an issue since the beggining, along with the other clues I have said, and what I want to know is if I should raise the DRAM Voltage to above 1.65 volts, and if so to how high. Or if there is another fix of course. |
|
| 8056. |
Solve : Picking computer for graphic design? |
|
Answer» Hello, Im hoping some of you can give me some advice. I USED to be a graphic designer and am trying to get back into it. So, i need a new computer. I want something with a reasonable graphics card and a fast enough processor. I wont be working on huge files just something that can handle photoshop, illustrator, indesign really. CS5 mostly. Ive got a budget of £500, so have narrowed it down to two: ... Ive got a budget of £500, so have narrowed it down to two:2nd link is broken. However, any modern computer will adequately handle the tasks you have specified. Be advised, if you are planning on using any of your old software, it might not run natively on Win7 HP (64-bit). In fact, it may not run at all. Win7 HP will run 32-bit programs.Thanks for the reply. This is the other link sainsburys must of moved it in the night! http://www.sainsburys.co.uk/sol/shop/technology/computing_and_gaming/desktop_pcs_and_monitors/121686424_hp_desktop_tower_p6740uk.html I hadnt thought of the problem of moving software! I know my mac software wont work but i have adobe suite on my vista laptop. Will this work ok with windows 7? THANK you LisaOn examining the reviews of the 2 options that you have given us to compare a coupe of things pop out at me that may or may not be of future concern to you. The 1st computer offers "blue-ray" in the optical dept. the 2nd does not. Blue-ray technology is more sharp and offers more features over dvd and may give you more graphics options. However that tower has very limited internal open card ports which might be a limitation if you found a need for adding additional hardware. Now whether that would be future concern remains to be seen as with 6 usb ports that becomes an alternative for hardware attachments. Both seem to have similar memory/hardrive/and graphics cards. It is just a suspicion on my part but i cannot help but think for the price you have indicated i believe you can do better than the 2 you have presented to us. If your not in a big rush i suggest you do some more research in that area. Does Tiger Direct exist as a purchasing option for you? truenorthI agree with Truenorth. I'm not being funny, but if I were a graphic designer I wouldn't be buying my computer from either Sainsbury's or Tesco. For non-Brits, these stores are supermarkets. I get my olive oil and pasta from Sainsbury's and my beer, milk, and bread from Tesco. It's a bit like saying "I want to be a racing driver and I've got £5,000 to spend so that narrows it down to an 03 reg Skoda Fabia or maybe a Mondeo".I'm in the UK and I recommend looking at ebuyer.com, dabs.com, misco.co.uk or overclockers.co.uk to buy a PC - Overclockers do custom built PCs whereas the others sell brand name PCs such as HP but at much better prices than highstreet stores.Thank you truenorth and camerongray. If you think i could get better for that price i will KEEP looking. No, unfortunately im in scotland so couldnt get from tiger direct. Thanks for the uk sites, im away to check them out. I appreciate your advice Lisa PS Salmon Trout, i bought my last imac from tesco direct, it was on OFFER. I dont know why you think its strange to buy from a supermarket, im just looking for the best price!! |
|
| 8057. |
Solve : my laptop is not able to find my hard disk? |
|
Answer» hi there |
|
| 8058. |
Solve : Hard drive partition with clean? |
|
Answer» Okay, long explanation. I have a Windows 98 SE that I dug out of the dumpster. It came with no installation disk or anything else. My hard drive has gotten full, and the previous user clearly partitioned the hard drive. I got a completely empty hard drive with no OS on it (20 GB), and I want to use that, but I can't find a way to install an OS on it. Can anyone help me?Whatever OS you want to install on it you will need the install CD and a valid keycode.From a Bing search |
|
| 8059. |
Solve : High Resolution Laptop Monitor? |
|
Answer» I am trying to find the laptop that has the highest RESOLUTION MONITOR. UTILIZATION would be for medical viewing, CT, MRI etc. 2 megapixel is acceptable but would prefer 3 megapixel. RECOMMENDATIONS?Get a Ma c Bock Pro with 17" LCD screen. |
|
| 8060. |
Solve : Turning off monitor? |
|
Answer» Hi everyone. |
|
| 8061. |
Solve : How to force my PC to boot from cdrom?? |
|
Answer» I'm trying to get my PC to boot from the cdrom. I've gone into the bios and made sure the cdrom is SET to boot first, but instead of automatically booting, I get the message to press any key to boot from the cd. The problem with that is that since the computer isn't booted up, the KEYBOARD is not responding to me pressing any key. How can I get around this?I'm no guru but until one of our more experienced members responds I'll try to help. |
|
| 8062. |
Solve : What Next?? |
|
Answer» I am In the process of upgrading my computer (self built) I got some really good advice for a video card and want to get some advice on what to upgrade next. I mean what would you guys get next, more Memory, I have 4GB of ram. Or should I get a larger harddrive, I want to get a terabyte , currently have 500GB hard drive. Which would benefit me most to PURCHASE first? Thanks. My specs are posted on (Computer specs)If your constantly running out of HD, i'd GO with larger, otherwise of you STILL have plenty of storage, then go for the extra RAM. If your like me and have a 500GB SATA and only 12GB free ( my current situation ), you would want to get a larger drive or get rid of stuff you dont need to free up space. I am thinking of upgrading to 1TB or 1.5TB as xmas present to self. For PERFORMANCE it helps to have at least 40% free I have been told, as for as the drives start to get jam packed they slow down due to extended seek times even if defragmented which Windows 7 is pretty good at defragging on the fly. |
|
| 8063. |
Solve : i5 Upgrade to Dell Dimension 4700?? |
|
Answer» Dear Forum, Also, would Ubuntu work good for me? It would unless you are using specific stock trading programs that only work on windows. |
|
| 8064. |
Solve : Hard Disk Model Changer? |
|
Answer» HI, any one know or selling utility which can change the hard disk model name example from MHV2040H to MHT2040B Any advice or ASSISTANT it much appreciated ThanksWhy WOULD you want to do that?That's a darn good question...why ?Hi Have a look on HHDguru for advice on the PC3000 card. What you are tring to do is rewrite the firmware. This is not a good idea. if you are doing this for data recovery you need to swap the firmware ic between boards. If you don't have the surface mount IC rework station this is also a very bad idea. Some more information about what you want to achieve would HELP. |
|
| 8065. |
Solve : Laptop Blank Screen Flashing (5 times) Caps? Num/Scroll? Lock? |
|
Answer» Computer: HP Compaq 6735b Notebook PC Would I be able to remove the HD from this laptop, place it into another laptop, and have access to the files present on it? Or would this require formatting or installation in a HD case in order to transfer the files over? Yes, if you put it in a laptop with identical hardware (but then you would also need to plug an external hdd or something to copy the files to). Otherwise, you would have to plug it into a regular comp. Is the screen completely blank the whole time or does it flash some BIOS text? Quote from: Linux711 on October 26, 2011, 07:43:54 AM Yes, if you put it in a laptop with identical hardware (but then you would also need to plug an external hdd or something to copy the files to). Otherwise, you would have to plug it into a regular comp. No bios. The scren is utterly blank. To clarify: I could only transfer the HD into another laptop provided that the hardware is identical? Otherwise I'd have to slap it into an external shell? Quote from: jason2074 on October 26, 2011, 07:39:55 AM You need to transfer first the documents from your hard drive as a safety procedure. You would need an enclosure adapter and another working computer to do this -> http://www.liutilities.com/how-to/install-laptop-hard-drive-to-desktop-computer/ Okay. So you're saying that HP site is legitimate in claiming this error is explicitly a motherboard problem? I just wanted to confirm as this PROBABLY means I'll be purchasing another laptop and do not want to do so if it was possibly something else or easily resolvable. As I asked to Linux, just to confirm: I would need -exact- hardware to switch out the HD to another computer and just run it up? Because I have another working laptop. Thanks to both of you. Quote I would need -exact- hardware to switch out the HD to another computer and just run it up? Yes, you would if you were going to boot from it. If you just want to get the files, then no. But you talked about another laptop. In most laptops you can only put one hard drive in, so you would need an external enclosure. The easiest WAY would be to just find a desktop and HOOK it up to that so that you can transfer the files.These are handy for that...'bout 8 Bucks at any PC store... Laptop to IDE converter.Thank you everyone for your help on this issue. I got the new Laptop + HDD enclosure (as I thought it'd be more useful) so I should be able to get everythin' going just fine. Thank you again. Problem solved. |
|
| 8066. |
Solve : Computer powers but that's it.? |
|
Answer» My nephew has a Compaq Presario SR1426nx running Windows XP home which he asked me to look at. About a week ago the mouse stopped working and now when you start the green light on the PSU goes on, the PSU fan runs, the cooling fan above the cpu runs, the disk drive light goes on about 2 seconds than nothing. The monitor is good because I'm using it now on my computer to write this post. I put the HD in a external enclosure and it appears to be fine. The monitor goes right to energy saver and that's it. I tried adding a separate video card but still same result. If I unplug the monitor cable I get a no signal message but when I plug it back in it goes right to energy saver. Without video I can't check BIO or anything else. The first thing I did was change the CMOS battery before I bought and installed the new PSU, still NG. If the computer is in power saver mode is there a way to get it out blind, can't see anything on the monitor. I'm pretty sure it's a Win XP home OS.Remove battery & reset BIOS by use of shorting jumper on motherboard. There should be a jumper block with 3 pins, Normal is 1-2, Reset is 2-3. If not labeled, Normal is current position. Removing battery alone is not always enough to reset BIOS; current draw is micro-amps, takes a long time to run down on it's own. http://h10025.www1.hp.com/ewfrf/wc/manualCategory?cc=us&dlc=en&lc=en&os=228&product=465651&sw_lang=& Quote from: Computer_Commando on November 10, 2011, 06:11:52 AM Remove battery & reset BIOS by use of shorting jumper on motherboard. There should be a jumper block with 3 pins, Normal is 1-2, Reset is 2-3. If not labeled, Normal is current position. Removing battery alone is not always enough to reset BIOS; current draw is micro-amps, takes a long time to run down on it's own. Removed the battery and changed the CIOS jumper with power off to 2-3 reset for about 15 seconds. Put battery in and jumper back to 1-2 and powered computer. The system still didn't boot but the PSU fan and CPU fan ran faster than normal. Shut the computer off and restarted and the fans ran normal but still no boot. Don't know if this means anything. I'm going to give the motherboard a visual inspection as suggested. I guess the next step would be to replace the motherboard but before I go through the time and expense (about $100), is there a way to test it to make sure it's the problem? Thanks for your help and supportDoes monitor power button stays orange while computer boots? Does numlock on keyboard lights up/stays or gets response when turning on numlock? Quote from: jason2074 on November 10, 2011, 11:35:44 PM Does monitor power button stays orange while computer boots? Does numlock on keyboard lights up/stays or gets response when turning on numlock? The monitor light stays orange. If I unplug the video cable the light goes green but when I plug back in the light goes orange. There is no response on the USB keyboard or USB mouse. My nephew TOLD me he was having trouble with his mouse than keyboard right before it stopped completely. That is why I thought it was faulty PSU and CIOS battery and replaced with new units. Just one more thing. When I power up the computer the light on the hard drive goes on for about 3 seconds. Is there a sequence that BIO posts use, first cpu ,than memory and so forth? Thanks for taking the time to help |
|
| 8067. |
Solve : Single vs Dual RAM?? |
|
Answer» Dear Forum, |
|
| 8068. |
Solve : Booting issues..? |
|
Answer» now that i've got my new pc working onto other stuff. i've been trying to fix my friend's pc for awhile. i took out his hdd and connected it to my OLD pc to see if that was the problem. at this point it's hard to tell. i set the jumpers multiple times but what i think is the right one is master. it's an ibm deskstar so there's slave and cable select as well. after hooking it up to my dell d/4600 the display boots right up with the dell sign and starts loading. then it briefly flashes some kind of text but it's squiggly and sideways and only stays on the screen a millisecond. the it's a black screen with a blinking cursor and eventually beeps twice. i've looked up what that means in POST and nothing i've found has fixed the problem. the diagnostic leds on back of pc light up in the sequence that says that "something else is the problem" and tells me to make sure cables are connected properly to hdd, cd, and dvd drives. the mobo on this dell has one ide port for cd and one for hdd. they are correct. i reseated the memory and video cards just as a precaution. i've tried hitting f12 and f2 to get into bios and boot setup. f12 for bios just beeps and doesn't do anything. f2 will say entering boot setup for a brief second and then doesn't do anything. the hdd has windows on it so that's not an issue. it's also the only hdd in the system. the hdd is getting power to it so it's not dead. he hasn't TOUCHED the THING in a couple of years and when he did he said it worked. my dell was working last week with my old hdds in it so can't see anything there being the cause. any ideas on how to proceed?If you discount the HDD and turn it on, yu should bet some kind of error message. What does it say? Does it EVER let you into the BIOS? |
|
| 8069. |
Solve : graphics card not working? |
|
Answer» MINE is a 945 series motherboard having a pentium 4 processor and 1 gb DDR 2 Ram . yesterday i installed my new graphics card NVIDIA GEFORCE 201(MSI BUILD). but now it isn't working properly . it has started slowing my pc and today its i was not able to see its application in notification area . i am using windows xpDo you mean the GeForce 210? Have you installed the drivers? www.nvidia.com/page/drivers.html ya i mean geforce 210 ya i have installed all the drivers but i forget to uninstall the previous Intel drivers that i have in my comp.Uninstall the previous Intel drivers to ensure Windows is not using them. Have you used nVidia update to make sure your nVidia control panel and driver are up to date? just totally forget that thanks mate ya i want to ask you that what type of games can i now run in my pc Quote ya i want to ask you that what type of games can i now run in my pc Here it is compared to some common graphics CARDS: http://www.videocardbenchmark.net/gpu.php?gpu=GeForce+210 It is a pretty low end card. If you're going to be gaming, you should go with something more substantial. What types of games? Probably half-life 2, counter strike, COD on low settings, crysis on super low (maybe not at all).Am I the only person who find's NVidia (and for that matter, ATI/AMD's) method of naming their video cards confusing as *censored*? Confusing as *censored*? I went to Hong Kong last weekend and asked a salesman at Broadway Electronics for the best laptop with a GTX 460M/Radeon HD 6770M graphics chipset. He told me that the GT 550M was better than both of them. I recalled that I had seen reviews of the GT 555M outperforming the GTS 360M and told him I might be slightly confused and asked him for a recommendation on the best bang for buck mid-range (core i5-2410M with discrete GDDR5 graphics) laptop I could get. He proceeded to tell me that nVidia made this "legendary graphics card for laptops that is now no longer available called the 9800M GT". I said that the best graphics card configuration in a laptop is the GTX 580M SLI, found in the Alienware M18x-the 9800M GT was released in 2008. He's like, "Oh no. You see, even if they SLI it, which means x2, it becomes a low-performance GT 1160. How does that match up to a 9800 GT? Better yet, you can SLI a 9800 GT to CREATE a graphics card over 15000!!! OMG11!!1" He finished up with the typical salesman "I beat the system" smug tooth-flashing smile. I responded like this: But actually if you look closer its not all that confusing. Some time ago, ATi/AMD had suffixes like XT, XTX, Pro, X2, etc. Now its all in the clear, at least for desktop cards-a GTS 250 will outperform any graphics card of the GT range. A GTS 450 will outperform a GTS 250. A GTX 460 will outperform a GTX 260-they are in different generations, even though they both end in 60. A GTX 280 will outperform a GTX 460, though, but not as much as a GTX 480 outperforms a GTX 260. A Radeon HD 5770 will outperform a HD 6750, but a HD 6770 will outperform a HD 5770. All of my claims have been verified with http://www.hwcompare.com and http://www.notebookcheck.net/Mobile-Graphics-Cards-Benchmark-List.844.0.htmlFor laptops, though, yes you are right there are many odd exceptions-a GT 445M is better than a GT 550M. A GTX 285M SLI does not meet the performance of a single GTX 485M. A HD 5870M is better than a 6870M and so forth. All of my claims have been verified with http://www.hwcompare.com and http://www.notebookcheck.net/Mobile-Graphics-Cards-Benchmark-List.844.0.htmlAll you did was confirm that the entire thing is confusing. It's all ridiculous, and the loser is the consumer, because there is absolutely no indication what the cards are for. Also, for one thing, if they are going to use numbers, bigger numbers should be better. For example a 9500 GT is worse than a 8800GT. why? That makes no sense. Yes I know that the second digit is more significant, but if that is the case why is it the second digit?. If it's more significant, it should be more significant in the number, a la 5900GT and 8800GT, so direct numeric comparisons actually make sense. If they aren't even going to make the numbers directly comparable, they shouldn't bother to use numbers at all. At least when the GPU families used names that could be used for a metric- all Riva TNT's are worse than all Geforce cards. ATI Rage Pro is less than Radeon. ATI Rage Pro is better than Rage II. Then they decided to stick with one name (Radeon for ATI and Geforce for Nvidia) and that's when the comprehensibility of their naming scheme took a nosedive. But then they decided to assign numbers to their chipsets and integrate that number into the number of the card, REDUCING the number into a pile of gibberish that cannot be treated like a number at all. It's marketing, really. Confuse the *censored* out of potential customers and maybe they'll pay more than they need too. |
|
| 8070. |
Solve : Laptop resurrected, Keyboard won't work? |
|
Answer» I have an HP G62-340US Notebook PC with Windows 7 Home Premium. AMD Athlon II P340 dual core processor 2.2 GHZ. 2 GB RAM, 64 bit operating system. About one year old. If you have spilled fluid in your laptop, do not use your laptop at all until you repair your laptop. Continued use of the laptop when in need of a spill clean up can lead to permanent damage to your laptop motherboard. |
|
| 8071. |
Solve : medion laptop wont boot up,black screen? |
|
Answer» i have a medion akoya e5312 laptop,when i try and boot it up all i get is a black screen,i cannot access the BIOS and no KEYS work,any ideas? |
|
| 8072. |
Solve : Artifacts? |
|
Answer» Hi All , I am getting artifacts when playing Call of duty modern warfare 3, after about an hour playing it. I know its probably overheating.... it does not do this when I play Cod modern warfare (the first one). Can this be fixed or should I get a new card? I can spend about 200.00 dollors on one. But I need advice on what new card to buy, need something for gaming. any ideas?. Specs.....Widows 7 64 bit, Intel cor2 Duo Cpu [email protected] 3.00GHZ, 4.00GB Ram, Nvidia Geforce 9800gtx/9800gtx+ graghic card, Power supply Corsair HX620W,Nvidia 780i motherbored, Thanks.It may well be that the issue is your video card but before spending your hard earned money on another card run I would expect that the newest computers with the latest operating system ought to be able to handle any current game. When it comes to Video cards, the processing power required for basic desktop usage are far less than those required by a modern 3-D game. Also, the hardware utilization of the Graphics hardware while playing such a game is far greater than it is at the desktop, which can make issues more readily apparent, especially if that utilization results in overheating. BC,Your comments are well understood. However i would have EXPECTED that at the time of acquisition of this particular game the O/P would have verified this "The game compatibility criteria should indicate whether your equipment is capable of playing the game. Is there anything to indicate that it isn't?" Plus this was why "especially if that utilization results in overheating." i suggested the test did . Which from the results does not appear to be an issue. So aren't we back to my previous observation?truenorthIt doesn't matter whether the card meets the specs or not if it's defective. If a game doesn't use, say, Shader Model 4, than none of the hardware on the card is employed relating to that feature, so you don't see any issues, even if there are hardware issues with that circuitry. Same for many other FEATURES, Including video card memory. Graphics memory isn't filled by many games, but NEWER games will fill them "more" so if there are issues with the Graphics memory in higher addresses, newer games will see issues whereas older ones will not; etc.Gotcha. But if the O/P is actually dealing with a defective graphics card and taking into consideration my earlier comments re the "newness potential" of the computer then perhaps a warranty issue comes into play here.truenorth P.S. I guess at this point to relate to this possibility we need a return of the O/P. |
|
| 8073. |
Solve : Computer powers on and runs but no display? |
|
Answer» Hi I am currently running the following amd quad core 9850 biostar ta780g m2+ motherboard Also noticed fan for CPU powers up and runs so definatly have power to the mobo! Could be that only part of the PSU is bad. Quote from: Linux711 on November 10, 2011, 05:47:37 PM Do you have another power supply you can try?the CPU is powered off the mother board so if the psu wasn't working would that not make the fan run on the CPU? I thought if CPU fan is powered off the mobo it should be fine but I could be wrong? Not necessarily, it could be that only certain voltages out of the power supply went bad. I think it is probably more likely though, that either the CPU or motherboard is bad, I just thought that it would be easier to just test a different PSU. Quote from: Linux711 on November 10, 2011, 06:12:22 PM Not necessarily, it could be that only certain voltages out of the power supply went bad. I think it is probably more likely though, that either the CPU or motherboard is bad, I just thought that it would be easier to just test a different PSU.Ok I've got my old psych I shall try that and post reports back thanks for the advice on the psu. Greatly appreciated M.Harding Did you try atleast one stick of RAM module only?Yeah I tried each one separately just incase they were fried. I also tried a new stick of ram and still Nothing. Also tried my Other psu that I know works fine and nothing so thinking motherboard is dead?? Make sure you attached a keyboard when pc boots without display. The keyboard on lights, NUMLOCK responding will know if there is activity. While CMOS battery removed, try reapplying thermal paste on CPU and make sure it is properly locked on heatsink. If possible, check the processor pins for any dirt or dust then use just one stick of RAM(alternately), integrated components, single hard drive. Press power button about 10 to 15 seconds before plugging and check again for the result. |
|
| 8074. |
Solve : Can't Collect Information?? |
|
Answer» Dear Forum, What does this mean? I am also not sure why you ran that diagnostic utility. You will find Windows Management Instrumentation on my previous reply. |
|
| 8075. |
Solve : Computer shutting down for no reason.? |
|
Answer» Hey guys, Sadly, the P67 PLATFORM has been tainted a little by the Cougar Point chipset SATA port issues, which could cause long term reliability problems. Intel and all their partners had to rush to support users and replace millions of boards and according to the latest reports, Intel are a billion dollars out of pocket. If you get a new P67 motherboard just make sure it is the B3 revision (which is fixed).From: http://www.kitguru.net/components/motherboard/zardon/asrock-z68-extreme-4-intel-z68-motherboard-review/ I had a bad experience with another ASROCK board and quality flaw and thats why I looked into research into your motherboard. My problem was solder balls all over the place shorting out legs etc as they come loose and in contact with surface mount chips etc. Tapped the board on a table with white sheet of paper and about 8 solder balls about the size of a pen ball point dropped and rolled on paper. Then tested the board after that and it worked but I had very little trust in its quality and reliability after. I saw a large solder ball that tipped me off to the problem by a PCI port. My symptoms were random black screens, failed boots, and all sorts of odd behavior. I'd check to make sure all fans are spinning as for a bad fan can cause the system to shut down to protect itself, and then move onto the PSU even though you dont have one available. Also other times I have seen unstable systems it was the result of dirty line power to the outlet that the computer was on, such as one customer I had that complained that there system would reboot randomly, but it seemed to happen more in the evenings. The cause was that their bedroom directly above the kitchen shared the same power with that of the microwave oven and the draw of the microwave oven dropped the line voltage on that service of their home and caused the system to reboot. The lights flickering was the KEY indicator there as well. I suggesed adding a $50 UPS and their problem was solved. If you dont have a UPS Battery Backup, its a good investment, although it probably wont help your current issue unless a line power issue. Quote from: nixie on November 11, 2011, 05:43:35 PM If you dont have a UPS Battery Backup, its a good investment All computers should be run off UPSS. Besides the battery backup features, all name brands include excellent surge protection. |
|
| 8076. |
Solve : Xplorer X6-9500 charger cutting off? |
|
Answer» i have this laptop: |
|
| 8077. |
Solve : Computer Powers on for a half second then nothing... Help Appreciated!!!? |
|
Answer» My computer powers on for half a second then nothing except the power light on the case flashes. It is a home built PC. Before anyone assumes building error let me say that the machine ran for a year or more before this problem developed. Also, the power supply can definitely be ruled out as a cause of the problem. I bought a brand NEW power supply that is plenty large ENOUGH to run the machine. Now for the technical information. The motherboard is an MSI K9VGM-V board. It has an AMD Dual core processor and 2 GB of DDRII RAM. I also have a Radeon video card on board. I have tried disconnecting everything but the video card and starting up with the same result so I can eliminate everything but the video card as the problem. Does anyone have any IDEAS? I do not want to go to the trouble of buying a new motherboard if my problem is in my processor. The fact is that the card itself is hard to come by and if I have to replace more that one item I may as well upgrade the whole system. The REALITY is that times are tight and if I can spent $70 to repair the machine rather than buying a new motherboard, chip set, and RAM, I will do that. Any help would be appreciated!!!Have you tried it with only 1 stik of RAM ? ? |
|
| 8078. |
Solve : HP 4500 four way wirelessl printer stopped working ? ?? |
|
Answer» I hae a HP 4500 wireless printer scanner copier which has worked as a printer and a copier for several months now. (never as a scanner). About a month ago the BLACK cartridge went dry and I refilled. However, the printer would not accept the cartridge after that so I bought a replacement cartridge (not a HP) ebay and used it successfully for a few weeks. Then, yesterday, I had a paper jam. After I removed the paper, the rinter would not accept the substitute cartridge that I had put in.. LAST night I shut the system down. This AM I fired it up again, the printer went through the "new cartridge" procecedure, printed out one document, then went right back into the "incompatible cartrdge" modeandrefused to PRINT. I am hesitnt to buy another cartridge as I feel that it won't accept that either. |
|
| 8079. |
Solve : Laptop Restart? |
|
Answer» It is a Compaq Presario V6000 model. |
|
| 8080. |
Solve : BSODs now bad sectors? |
|
Answer» I have been having problems with my graphics card. It works ok in 3d games and in windows, but when I try do do anything that requires 2d hardware acceleration, it causes BSODs. I currently don't want to invest in a new graphics card, so I have just been avoiding all things that use 2d acceleration (youtube and screensaver). It took me a while to figure out that the problem was with the graphics card, so the system has had numerous BSODs. I recently by accident tried to watch a HD video and it BSODd (only one program was open when this happened). When I rebooted, I found about half of my PROGRAMS where not even functioning, so I ran a disk check. The disk check found 138MB of bad sectors. 1. Start backing up your data now. Yes, I already have a backup that I made about two weeks ago. I think I am going to just restore that and see if I keep getting bad sectors after that. Quote 2. Check your hard drive with the hard drive manufacturer's diagnostic utility. Yes, and it also said there were bad sectors. It didn't specify exactly how MANY, it just said too many LOL. Quote 3. Download BlueScreenView I didn't because I don't think we can learn much from them. They are completely random. Plus I am using a nLite version of windows and don't think it will work.Hard Disk is failing. Replace it and go from there. Quote Hard Disk is failing. Replace it and go from there. How do you know that it's not just caused by the BSODs? Quote from: Linux711 on November 12, 2011, 06:58:18 PM How do you know that it's not just caused by the BSODs? BSOD are not a cause. They are an effect. Quote from: Linux711 on November 12, 2011, 06:29:23 PM Yes, and it also said there were bad sectors. It didn't specify exactly how many, it just said too many LOL. Time for a new hard drive. Quote BSOD are not a cause. They are an effect. An effect of the video card malfunction, not the hdd. Ok. Let me state the question better. Can the BSODs from a bad graphics card cause the hard drive to get bad sectors because the filesystem might get corrupted? Quote An effect of the video card malfunction, not the hdd.How can you know this? You already stated that there is "nothing useful" via BlueScreenView, and that "They are completely random". Quote from: Linux711 on November 12, 2011, 09:11:47 PM Can the BSODs from a bad graphics card cause the hard drive to get bad sectors because the filesystem might get corrupted? No. A Bad Sector is MARKED by the Disk Driver when it has problems reading data from the sector. If you get a Blue Screen the computer stops what it is doing. The "worst" case scenario (from the perspective of the HD) is that it was in the middle of a write operation. However, that leaves the file system in an inconsistent state; the sectors involved will still be read fine. And the file system can be fixed relatively easily, with minimal data loss due to USN Journalling. A Bad Sector is marked by the system when it tries a number of times to read the disk but keeps getting Errors from the disk controller to the effect that it cannot determine what is in the sector. The two causes are Hard drive and Power Supply, but unless you replace one or the other you aren't going to be able to disprove either. Quote is that it was in the middle of a write operation. However, that leaves the file system in an inconsistent state; the sectors involved will still be read fine. Ah, ok. That answers my question. So I guess it's time for a new hdd and graphics card. I've been having so many problems with this system I bought a new hdd today and I am copying my backup onto it. So far it's GOOD. Anyway, anyone know why resizing a partition is faster than formatting an equal sized one? Next time I am going to try just making like an 8mb parition and see what happens if I just resize it.Sizing a partition only marks beginning and ending sectors ...therefore it's faster. |
|
| 8081. |
Solve : 2 different Nvidia Geforce GPU's to work together on P7P55D? |
|
Answer» Hi everyone, |
|
| 8082. |
Solve : Monitor can not detect PC? |
|
Answer» Hello, I have tried to get my monitor to detect my PC. I have used many different monitors and VGA cables. I think their may be something wrong with the onboard graphics card. It seems to be KIND of loose from the motherboard. I went and bought a Nvidia Galaxy GeForce 8400GS 512MB card. I plugged it in and it would still not WORK. I plugged the VGA cables into the old onboard graphics card and for some reason it worked. I installed the drivers and restarted the computer. It told me I could not use the new graphics card because it did not have enough resources. I disabled the old onboard graphics card from the DEVICE manager. I turned off the computer and put the VGA cable into the new Graphics card. After that it did show the display and started to work. I restarted the computer to see if it would still work to just make sure and it would not display on the monitor again. I plugged the VGA cables back into the Old onboard graphics to see if i could get it to work again and it would not. Is there anything I can do? I think their may be something wrong with the onboard graphics card. It seems to be kind of loose from the motherboard.Do you mean that the onboard graphics chip is loose? Quote from: elwilli on November 13, 2011, 02:56:56 AM Have you checked that the BIOS of the motherboard is everything ? HuH ? ? Quote from: James44445 on November 11, 2011, 03:13:10 PM It told me I could not use the new graphics card because it did not have enough resources.This is PUZZLING. Can you be more specific? What resources? |
|
| 8083. |
Solve : I'm trying to hook up an original Xbox to my PC monitor.? |
|
Answer» Has anyone come across these gizmos: |
|
| 8084. |
Solve : Need to buy oem XP Home or is there a work around? |
|
Answer» A friend of mine installed a new motherboard into his Compaq computer case and attempted to reinstall Windows XP Home from the System Restore Set that came with the computer. The problem is that the system restore set pops up stating that the hardware does not MATCH, so I am guessing it detects the motherboard somehow during this process and doesnt allow install as bootleg protection is blocking because of this new FOREIGN motherboard in the original box. Does the Windows XP Home License die with the motherboard for that box, or can he legally use another persons OEM copy of Windows XP Home and his key off the side panel to activate?Short answer, yes. Any OEM version of Windows ® is tied to the motherboard and possibly the hard drive from the manufacture. However, the retail version of Windows can be moved from ONE PC to another by calling in to the Microsoft telephone support. If you borrow an MS XPHome CD and completely wipe the machine and do a clean install thiss is well within your rights under the EULA... The versions need to match. Then boot to the XP CD...delete and re-create the C:\ partition and run setup... NOTE: It would be a good idea to collect all the NECCESSARY drivers from the manuf. site before starting... If activation hiccups after this use the 800 # for MS and they will ISSUE a new key.Thanks!Anytime...let us know. |
|
| 8085. |
Solve : 2 hard drives on same place? |
|
Answer» hi everyone .i WANT to install 2 hard drives in my pc so how can i do this and what to do jumpers?pls REPLY anyone.thanksHere is but one of thousands of tutorial you can READ on your REQUEST. It was the very 1st in a Google search after 2 commercial web sites. |
|
| 8086. |
Solve : More HP problems. Now I can't even un-install? |
|
Answer» I have had a HP 4500 four way wireless printer installed now for sveral months. Occasionaly it gives my problems. Lately it has refused print at all and I decided to un-install it and try to start over. But I can't un-install it. I get the error message |
|
| 8087. |
Solve : my laptop e442 will not boot up? |
|
Answer» hello it wont allow me to use safe mode What happens when you attempt to use it? Quote i go to switch it on and i get windows can not install please restart to continue Um. Never seen that error and it doesn't even make sense because you are just trying to boot it up, not install anything. Am I correct?I am confused,given that it won't start how are you attempting to do this "ive tried taking it to its last good configuration, ".Also what is the operating SYSTEM. I know that it may prove fruitless but talk to the boys and try to determine what it was that they were last doing on the computer (as detailed as possible) when they encountered an error or crash or whatever. That may help point us in a defined direction.truenorthHey; can you try hitting F8 for me when the computer starts. This is called safe mode and it runs the computer using it most basic systems. (like starting the engine of a car with out the frame or electrics) if this does not work what does it do when you try this? Please make sure there is no disc in the cd drive i know it sounds silly but you never know. Can you list computer type the exact error message perlease Quote Hey; can you try hitting F8 for me when the computer starts. Quote ive tried taking it to its last good configuration He must know how to get to that menu because that is one of the options on it.Suck my thumb son Don't worry about me, lets try and get this sorted for her. For someone new your not exactly MAKING a good 1st impression... Keep in mind we are all Volunteers and there are those that have been here a tad bit longer than when you arrived...i appologise for being misleading i will explain again it switches on and goes through the booting up process then a grey box with a red cross COMES up saying "windows can not complete the installation please restart" this i do and it does the same thing over and over ive tried to boot it in safe mode it just says the same thing ive tried configuring it to its last good configuration to start ...nothing im using the F keys to get to these options as obvisously i cant get any futher i cannot FIND the option to restore the whole thing back to factory either im really stuck any help would be greatly appreciated many thanks x the only thing i can think of is that its got a virus or they have wiped something clean off and im not that computer literate to understand how to put it right many thanks X3 things: What version of Windows ? Do you have a Windows CD ? If a factory restore is done you will lose all your data...is this an option ? ?hello its running on windows 7 i have no CD for it i never backed one up even tho it was asking me to do so if factory restore is done its fine to loose all data as i do have it all stored many thanks x |
|
| 8088. |
Solve : Video Memory Stress Test found 580+ errors? |
|
Answer» I've got problems with a friend's nVidia 8800 GTS. It starts normally for a few minutes, but afterwards the screen freezes and red/blue vertical lines appear on screen. It's not overheating, as it's temperature isn't going over 60°C Ouch ! !Yes.No, the card is not under warranty. I'll try swapping RAM modules, and I'm not feeling really comfortable of placing the graphics card into an oven o.O ty for the tip, though Quote from: patio on November 14, 2011, 09:02:20 PM Ouch ! !I am familiar with how circuit boards are made, I used to design & have them fabricated. There are several methods for soldering, solder paste & liquid flow bath. In any even, for this procedure, the circuit board is heated to the point where the solder will remelt, around 400 degF. Nothing like using a soldering iron, where the heat is concentrated on 1 spot. The procedure Transfusion refers to might actually work, but I wouldn't plan on cooking your Thanksgiving turkey in that oven. The vapors may linger for quite a while & the lead will get into the turkey. Tryptophan + Lead = Dead |
|
| 8089. |
Solve : Headphones left out in below freezing weather? |
|
Answer» I ordered some headphones and they were delivered earlier today, but I didn't get them until just now. Right now the weather is below freezing, so I'm wondering if they could have been damaged after being out there for around 8 HOURS. The packaging was cold, and so were the headphones themselves. They work, but I have no way of knowing if they weren't a little affected by the cold. Should I return them just in case? Or should they be fine? The risk of condensation would be the biggest issue, but that was not a problem for me, even on this large electronic device.Please be cautious about what you're saying. You almost give the impression condensation is not a significant issue. But, it is. Moisture inside an electronic/electrical device should always be avoided. For a device brought inside after sitting out in cold temperatures, merely allowing the device adequate time to warm to room temperature and for any condensed moisture to evaporate is all that's necessary to avoid damage. To be on the side, don't get in a hurry to start/use the device; give it plenty of time, perhaps hours or even overnight, to sit in room temperature before its first use. Quote from: Alternative Solution on November 16, 2011, 01:21:05 AM Temperature outside when I got them: 29°F or -2°CThat's still warm. I run with my iPod in that and colder weather all the time. Like everyone is saying, the warming back up is the tricky part. I've seen a laptop run fine in -25°F (-31°C) weather (I, on the other hand, was not running at all at that temp.) Quote from: Raven19528 on November 16, 2011, 05:54:37 PM That's still warm. I run with my iPod in that and colder weather all the time. Like everyone is saying, the warming back up is the tricky part. I've seen a laptop run fine in -25°F (-31°C) weather (I, on the other hand, was not running at all at that temp.) The device being on in those conditions isn't the issue. it's the device being off in a cold environment, and then being brought into a warm one. |
|
| 8090. |
Solve : Fax over DSL? |
|
Answer» I'm getting rid of AT&T POT but RETAINING their DSL. The only problem is my STAND alone fax machine will no longer work. Is there a COMBO printer available that can do FAX over DSL? I can't use one that will scan in to PDF or another format to be attached to an email. I will no longer have telephone service (voice), just ADSL from AT&T over same line. Filter will not work anymore. Fax machines work through the voice phone line. You will need active voice phone service to fax from the machine. That's how the machines work, they call, through the phone line, the receiving machine on the other end. Other alternatives to send documents without a phone line would be to pay for an online faxing service to whom you can send documents and they will fax them for you at a cost, or to scan and email documents which is an alternative a lot of companies use now. Quote from: quaxo on November 22, 2011, 08:03:35 AM Fax machines work through the voice phone line. You will need active voice phone service to fax from the machine. That's how the machines work, they call, through the phone line, the receiving machine on the other end. We can't cancel our telephone service independently in the UK (as far as I am aware) so this is new to me. So yeah, I was about to say pretty much that. Quote I can't use one that will scan in to PDF or another format to be attached to an email. How come? Quote from: mylogon on November 22, 2011, 08:18:54 AM We can't cancel our telephone service independently in the UK (as far as I am aware) so this is new to me. So yeah, I was about to say pretty much that. That varies with providers. Some providers require you to also pay for their voice service, however it's not actually necessary for DSL. As long as you're actually physically connected to the phone system, DSL will work even if you don't have phone service. Quote from: mylogon on November 22, 2011, 08:18:54 AM We can't cancel our telephone service independently in the UK (as far as I am aware) so this is new to me. So yeah, I was about to say pretty much that. There's only a couple recipients I fax to and even they, very rarely. They won't accept faxes attached to email. have you tried over the internet services, such as http://www.freepopfax.com/ or try following this tutorial http://www.ehow.com/how_4550668_send-fax-over-internet.html hope this helps, lukeI think your only solution may be software-based... SoftPedia has some Free and low cost software solutions listed at their site. Best of Luck. Quote from: jcmack on November 22, 2011, 08:32:16 AM There's only a couple recipients I fax to and even they, very rarely. They won't accept faxes attached to email.I'm wondering why? Do they not have a computer and an Internet connection? If they have them, then why won't they accept faxes attached to email? Quote from: soybean on November 22, 2011, 09:34:48 AM I'm wondering why? Do they not have a computer and an Internet connection? If they have them, then why won't they accept faxes attached to email? Simple, people are set in their ways, refusing to move with technology causing havoc for everyone else who has to compensate for them. A lot of companies, namely the public sectors, are the same - backwards.Although that may be true the only logical reason i see for it...backwards or not is the fact that a signed FAX is legally binding...whereas an e-mail is not. Quote from: soybean on November 22, 2011, 09:34:48 AM I'm wondering why? Do they not have a computer and an Internet connection? If they have them, then why won't they accept faxes attached to email? They are associated with our state Government. They won't do anything outside of their job description. They are not involved in the least with anything classified, but since the system is set up fax only, it precludes any e mail problems. Quote from: jcmack on November 22, 2011, 09:52:42 AM They are associated with our state Government. They won't do anything outside of their job description. They are not involved in the least with anything classified, but since the system is set up fax only, it precludes any e mail problems.Well, I think that's a real EXAMPLE of mylogon's comment: Quote from: mylogon on November 22, 2011, 09:48:10 AM Simple, people are set in their ways, refusing to move with technology...Anyway, have you looked at http://www.freepopfax.com/ that mylogon suggested? Looks to me like it is a good solution here. I would be faxing some personal info. I don't know if I want a third party involved. It's worth reserching though and I REALLY appreciate the info.] Jim |
|
| 8091. |
Solve : Foundation Certificate in Project Management ?? |
|
Answer» New test Foundation Certificate in Project Management for ISEB-PM1 ? how many questions for that ? What is the point of all these Certification Posts ? ? spam? I guess their not REAL good at it then... Quote from: patio on November 17, 2011, 11:44:16 AM I guess their not real good at it then... Either that, or they will later trigger the bomb by editing their profile so that their posts contain a signature which is a link. I call it "pre-spam". It MIGHT be WISE for the mods to consider that. Already thought of that and all User names are listed... 1 bomb and they all go bye-bye. |
|
| 8092. |
Solve : thermal take ruby orb parts missing :/? |
|
Answer» Hey guys i have recently built a system using old parts . its 775 Pentium 4 at 3.4ghz i have a thermal take ruby orb but I'm missing the 775 socket for my heatsink WOULD any one know where i could get the part / bracket |
|
| 8093. |
Solve : 2 different graphics cards? |
|
Answer» hey, i have just purchased an asus geforce gtx 550 ti 1gb and have a spare gts 250 512mb kicking about would it be worth STICKING it in the spare pcie slot? will it share its MEMORY with the other card or just do nothing at all?if yes do i have to alter anything in the bios to help them work together? i have a 620w psu is this enough to run them both? any help would be much appreciated. |
|
| 8094. |
Solve : XP Pro - SETUPLDR Couldn’t open drive multi disk rddisk partition 1? |
|
Answer» Computer Specs Operating SYSTEM - Windows XP Professional SP2, OEM & Legal(used on old MOTHERBOARD) Motherboard(Current & never been used) – MSI_P67A-C43(B) Service Packs - 2 & 3 Computer Model - Generic (built at Computer Convention during June 2001) Memory - 4GB Sound – Onboard Video(card) – PNY 512MB Harddrives (3) All Seagate Barracuda #1 Seagate (SATA) 500GB – never been used but is the one I wanted to install OS on. #2 Seagate (IDE) 500GB – Storage Drive #3 Seagate (SATA)1TB – Storage Drive Issue: I was attempting to install the operating system on the 500GB Seagate harddrive but keeping getting the following error message: SETUPLDR Couldn’t open drive(0) multi(0) disk(0) rddisk(0) partition(1) I have been in BIOS screen and have the boot options SET up correctly A) DVD-RW B)HD At first I thought I couldn’t install the drive because I the motherboard was confused(for want of a better description) about which harddrive to install the operating system on but after checking the case I remember that I although there was a cable connected to the IDE harddisk, that the other end of the cable WASN’T connected to IDE controller card (in the pci slot). So, that couldn’t be the issue. I went into BIOs and changed the SATA connection to ACHI, then to RAID, then to IDE and neither of those worked because I keep getting the same error message mentioned above. I read in another post a suggestion about setting the SATA controller to ATA and not to ACHI. Unfortunately that won’t work for me as the ones I mentioned are the only options I have other than disabling it. I thought maybe it was my harddrive, that it was dead as a doornail, so I disconnected it from my MSI motherboard and connected to my sister’s(the one I’m using right now to communicate). Her computer which is a Compaq Presario which has SATA capabilities picked on the drive right away. Of course I couldn’t see the drive until I used Seagate DiscWizard to format the drive as a Primary NTFS partition but once that was done the drive was fully viewable. I also connected the TB storage drive just to make sure that it was viable as well and it was. All my video files are still as intact as the day I put them on there. Can someone please TELL me what exactly does the error message SETUPLDR Couldn’t open drive(0) multi(0) disk(0) rddisk(0) partition(1) mean and how can I get this issue resolved before my sister comes to take back her computer(which is what I’m using right now)? I have trying to get work for the last few days and I'm at the end of my rope. Any help would be greatly appreciated. Thanks,Hi, lapetite66 I'm not sure about that error but did you try plugging the drive into a different SATA port on your motherboard? If not I would recommend doing this. Or you could just head over here: http://www.msfn.org/board/topic/154251-setupldr-couldnt-open-drive0-multi0-disk0-rddisk0-partition1/, where you already posted this question on another website. I would follow Jaclaz's last post: "Or you could get a DOS based CD such as the excellent UBCD: http://www.ultimatebootcd.com/ and use it to run a few tests on your hardware."Have you ever done the following? Remove the 500GB SATA drive. Install a small PATA (IDE )drive. About 120 GB. Or less. Bring up XP on just the small IDE drive. The purpose of the exercise is to confirm that the motherboard and the XP copy you have are know to work together . But if you can not get it o work with an older drive, it is futile to go very further using a large SATA drive. |
|
| 8095. |
Solve : Logitech and saitek stick won't work independently.? |
|
Answer» Hi, I have a joystick which is a saitek X52 and a joypad which is a Logitech. The problem I am having is that in some games they recognize each other at the same time making the game unplayable. This would be easliy solved if I could just unplug one STICK at a time, but when I do this I have to keep remapping all the controls because as soon as I take them out of the USB port they lose the mapping keys. Any ideas anyone? The main game it does this is in Fifa12 for the Pc.I don't use joysticks, but couldn't you just disable it in device manager?I could try it but which one of these do I disable, or do I disable them both? One says saitek controller (USB) and the other Saitek controller (HID).Saitek...although they build the best joystiks have not always written the best drivers... Saitek...although they build the best joystiks have not always written the best drivers... Done that but still the same, I'm still not sure which to disable though? Also, won't disabling it be the same as disconnecting it?If you disable the Logitech device it does not uninstall it... It will be re-enabled on NEXT boot. One of the main reasons i'm mad at MS because they got rid of Hardware profiles....they would come in handy in this case... Quote from: Linux711 on November 14, 2011, 11:16:55 AM I don't use joysticks, but couldn't you just disable it in device manager? For anyone else attempting this doing this corrupted my computer and I have had to spend the day renistalling everything, so be warned! The second time I tried doing this is when it broght my computer to a stand still and created a blank screen after restarting it. Quote from: Crafty on November 16, 2011, 07:22:26 AM For anyone else attempting this doing this corrupted my computer and I have had to spend the day renistalling everything, so be warned! The second time I tried doing this is when it broght my computer to a stand still and created a blank screen after restarting it. That doesn't make any sense. I just disabled one of my game CONTROLLERS, reboot, re-enabled, and restarted again without an issue. Clearly there was something else wrong. More specificially, I note you mention Logitech and Saitek, But you make no mention of device manager nodes aside from Saitek. More to the point, using multiple controllers depends on the game saving it's settings properly. A lot of them will basically same the various bindings as SAY "DirectInput joystick one, button 1" which means that whatever gamepad is assigned as joystick one will get that assignment, which could change if you hotplug the controllers. Properly done, the setting ought to be saved as something like "Logitech Dual Action, Button 1" and then the game should resolve the gamepad name based on DirectInput Device names. But most games don't do that, because very few are tested with multiple gamepads. Quote from: Crafty on November 16, 2011, 07:22:26 AM For anyone else attempting this doing this corrupted my computer and I have had to spend the day renistalling everything, so be warned! The second time I tried doing this is when it broght my computer to a stand still and created a blank screen after restarting it. If you are stating that the advice given hosed your system you are mistaken or you have done something other than what was suggested... Quote from: patio on November 16, 2011, 07:14:19 PM If you are stating that the advice given hosed your system you are mistaken or you have done something other than what was suggested... Unfortunately this did hose my system and I made no mistake disabling the correct USB. However, we all know making any changes to a computer has the potential to cause something to corrupt and I am not blaming it on the advice given. I did mention that it corrupted the system on the second time of trying and was just warning people what this did to my system. Maybe if you try it yourself a few times you may get the same result as I did. I believe this is what corrupted the computer because of the following things I did > I disabled the USB and it asked me to reboot. When I rebooted the computer started to boot up, but I was greeted with nothing but a black screen. After waiting 15 mins I decided to power off and restart the computer. However, on doing this, windows did boot up, but somewhat very slowly. I tried another 4 attempts to boot the system and evertime it took an age to boot into windows. Disabling the Device was what was suggested... From what you stated above it sounds like you disabled the USB controller...that was never suggested. Quote from: patio on November 17, 2011, 08:11:44 AM Disabling the Device was what was suggested... In Device Manager, under Human Interface Devices, I disabled Saitek X52 Flight Stick (USB). Is this correct? |
|
| 8096. |
Solve : Hard drive data transfer!? |
|
Answer» Hi my computer, dv2000, CRASHED today due to a graphic CARD failure,WICH is not uncommon for my model. Anyways i have this dv9000 laptop wich can hold 2 hard drives in it, i put the hard drive from the bad laptop and put it in the SLAVE hard drive slot. Is there a way to copy all my files from the SLAVE hard drive to the MASTER hard drive, including Desktop files and My documents to LOOK just like the old pc?This article is for Windows 2000. |
|
| 8097. |
Solve : ASUS N73S(V) Side-panel stopped? |
|
Answer» Hello, i got my NEW ASUS N73S(V) a month ago, and after the first 2 weeks, the side-panel for my keyboad STOPPED working. |
|
| 8098. |
Solve : HP All-In-One Scanner not working? |
|
Answer» Need help. This scanner and its software worked fine like a month ago. I've UNINSTALLED and reinstalled uncountable times, turn it on, turn it off, reboot the computer, you name it. Specifically I'm having problems with the HP Solution center. I think a lot of HP stuff has gotten left in the registry and is a huge part of why the uninstall and reinstall is not working. I'm afraid to edit the registry because my computer is a Compaq Presario so I need to be sure what ever I delete from the registry is for the HP Photosmart C5180 only. Can you help? I'm running Windows Vista.In regards to this " you name it" have you (after uninstalling all the software for the printer) disconnected all cables from the printer (usb/power) from the printer to the computer? Then using the manual followed the precise sequence for installing the printer as if it were new.truenorth |
|
| 8099. |
Solve : COM-ports? |
|
Answer» I am trying to transfer files to my sewing machine thru a DYNEX USB cable, I downloaded all of the software but it keeps telling me "Unable to open COM-port". Also, the cable I bought has the right connection, but the male / female parts are wrong, they both have the screws and no connectors. Would this have anything to do with my problem?I am going to take a stab in the DARK here and assume you are menaing you are using a USB to Serial port adapter? am trying to transfer files to my sewing machinePlease provide some information about the requirements of the machine. Quote from: Kurtiskain on November 15, 2011, 01:36:58 PM You will need to locate the manual for your sewing machine to determine the appropriate settings. This is the most important thing you need to do. Frankly, it's been a while since I had to make a com port work. While there were some standards for com ports, over the years there were MANY different variations, particularly for proprietary software and machines (LIKE a sewing machine). All the settings for the computers com port need to exactly match the com port settings on the target machine, and it's not always easy. Somebody correct me if I'm wrong, but if you can't find the manual, and can't find anything on-line to indicate the sewing machine com port settings, you can't hurt the sewing machines com port by trying different settings. If it's wrong it just won't work. I've had to do that trying to interface a computers com port with a com port on a piece of test equipment many times and never hurt anything. Quote from: rthompson80819 on November 15, 2011, 04:18:21 PM Somebody correct me if I'm wrong, but if you can't find the manual, and can't find anything on-line to indicate the sewing machine com port settings, you can't hurt the sewing machines com port by trying different settings. If it's wrong it just won't work. I've had to do that trying to interface a computers com port with a com port on a piece of test equipment many times and never hurt anything. Changing the baud rate and other settings does not change any voltage or current to the machine, you yes you are correct, it just won't communicate if the settings are wrong. Thanks for your suggestions. The manual does not list them, but I did call the product support for the sewing machine. |
|
| 8100. |
Solve : motherboard resources? |
|
Answer» What is "MOTHERBOARD RESOURCES"?PLEASE EXPLAIN it GOOGLE "Motherboard resources". |
|