3,974 Topics
![]() | |
Hey guys, Well i need some help. My laptop is being very wierd..... at the moment, i am running a Malwarebytes scan, and i will post that once it has finished. Here is my Hijackthis log, i don't like the look of it..... can someone please have a look over … | |
Flash drive will not allow me to access, reformat, or label it. When I plugged it into my XP machine it tried to format it with windows media player and now on my Vista machine it won't allow me to do anything. Will I have to go back onto my … | |
I have a Compaq Armada M700 laptop (Windows XP) with one usb port in the back of the computer. If I plug my external HDD (Toshiba 160 gig) into it directly, it will work perfectly fine, no problems. However, I also have a Wacom tablet which I'd like to be … | |
I have a sony vaio laptop and i want to disable S.M.A.R.T. the only problem is it wont let me disable it through BIOS. there is no option. Do i have any other possible solutions? Thanks. | |
Hi i am unable to install visual studio 2008 from a DVD. If i put in the DVD my computer hangs and when i check the CPU usage it goes up to 50% and stays there and i cant even eject the DVD. my only option is to restart the … | |
Hi, I created a script which I use to clean my database from missing entries. With it I both check if a file on the server is missing a database entry and if a database entry exist with no corresponding file on the server. The user first submits a form … | |
what is sata pipeline? is it a new technology or jus a series and is it from seagate only or from other manufacturer as well? if its a new tech what is the different between it and the normal one? | |
Hello there fellow users, I have been entrusted with the task of designing and implementing a financial system for a charity foundation where I live. The charity foundation requires its work (addition and retrieval of records, for example) to be done online, using a web app. The app connects to … | |
my laptop hard disk does not open for the operating system to even load that the hard disk has been locked can u help me | |
Hi! Basically, what I'm trying to do is a site for online storage of my own files, like Microsofts SkyDrive service. One thing I'm wondering about is what way that would be most effective to organize the files? My first thought was that when I upload the files to the … | |
I am getting repeated HDD error reported by the RAID systems. I am getting the HDDs replaced via warranty but this is happening too frequently tht I am thinking that something else is wrong. I have had about 5 HHDs failures in the last 4 weeks. As soon as I … | |
Hello everyone, [b]Wondershare Photo Recovery[/b] is being giveaway now on [url]www.giveawayoftheday.com[/url] It is designed for users to get back deleted and lost photos from computer, camera memory card and other devices. The giveaway is for only [b]24 hours on December 29, 2009[/b]. Anyone who needs it shouldn't miss the chance. … | |
I am doing a computer architecture module and I am stuck with the following questions: 1.How many memory locations can be addressed by a chip with 20 address pins? 2.What is the address of the highest addressable position of a byte-addressable memry with 1024 storage units and width of 32? | |
hi all due to a problem with my BIOS on my p4 sadly iam going to have to format my harddrive but before i do i want to transfer data from my xp pro hard drive on to my 2000 pro hard drive , they are both NTFS file system. … | |
I had recently purchased a new computer that has SATA drives controlled from an onboard controller (ASUS board - not sure of the model). My previous computer had EIDE HDDs, and the mother board failed on that machine. I wanted to bring over an EIDE drive (Baracuda 7200) that is … | |
Hi guys, I've got a data scraping script that is not picking few html elements/fields that I need. I can't get the following elements: product title price and specification It could be that the xpath is not correct since the website has a lots of div/tables without any id or … | |
I have a Toshiba Satellite A55 laptop, which I used for 2 years without any problems. Last month the system began slowing to a crawl and then either freezing up or crashing completely. Hard drive was making all sorts of scratching noises, and one time I got the error message … | |
I'm feeling a bit foolish right now. Here's what I'm trying to accomplish: I'm replacing my current HD with a Maxtor DiamondMax Plus 9. I got it in the mail, took the old C drive out and replaced it with the Max. Of course it gave me a "Boot Disk … | |
my usb not format. pls give me a solution to my problem. | |
My IE starts by itself every 5-10 min and opens random pages. Mostly "Big think" and car loan pages, but also hardcore porn web pages. A week ago I downloaded the newest version of Avira and scanned the computer. Th eproblem was solved for a while. But it happened again … | |
![]() | I clicked on the my computer icon yesterday and noticed that the icon for one of my hard drives had changed to a different icon. It is the one that is like a piece of paper with the corner folded slightly and has another picture of a screen or whatever. … |
Recently my hard disk started clicking and i thought that the only way i could access it was by making it a slave. But when i connected it to another computer, the drive is recognized in the post message and in BIOS but not in windows. Is there a way … | |
I don't understand why this is happening but I cannot open my Control Panel. I can't even open the personalization menu so that I can control my screen saver. Here is my system info followed by HijackThis report: OS Name Microsoft® Windows Vista™ Ultimate Version 6.0.6001 Service Pack 1, v.165 … | |
I purchased a 32GB storage disk + reader. When I plug it into my USB port a message says that it is not readable by this computer. When I choose the initialize button Disk Utility opens but there is no initializing option. I have a Mac OS X version 10.4.11 … | |
hai friend's ny question is about the database storage , in my project i created database for school , in that i create table for attendance for the school so while they enter the atttendance per day it may be 1000entry per day so for a month i will be … | |
Hi there everybody, I have got a big problem which I ask you help if possible. I have an IDE hard drive which is mounted on an enclosure. For 4 years it has worked the best but now it seems to have many problems as I am not able to … | |
I tried adding a new hard drive to my desktop pc, and now when I try to boot it says "Reboot and Select proper Boot device or Insert Boot Media in selected Boot device and press a key" I tried unplugging it and just rebooting, and it worked fine. I … ![]() | |
hi, [CODE] if (CLIENT_HANDLER_THREAD_CREATION_POLICY == POLICY_PRE_CREATE) { int id[NUMTHREADS]; for (int i = 0;i < NUMTHREADS;i++) { int id = i; int status = pthread_create(&client_request_handler_threads[i], NULL, handle_client_requests, &id[i]); } } void* handle_client_requests(void* id) { //printf("server threads spawnd\n"); // create log file thread_id = pthread_self(); sprintf(log_file_name,"t%d.log",thread_id); log_file = fopen(log_file_name, "w"); // … | |
hi, [CODE]#include <stdio.h> int* get_int() { int arr[100]; arr[0] = 5; printf("arr %p\n",arr); return arr; } int main() { int* p = get_int(); printf("got %p\n",p); return 0; }[/CODE] for the code above I get this warning message: [CODE]test-heap.c: In function ‘int* get_int()’: test-heap.c:5: warning: address of local variable ‘arr’ returned … | |
Hi, my maxtor ext. hd which has been working well, has suddenly started to flash lights when connected to the power supply. The green light in the case is flashing and the green light on the power adaptor. The light is flashing fast and the icon is not showing up … | |
I purchased a 32GB storage disk + reader. When I plug it into my USB port a message says that it is not readable by this computer. When I choose the initialize button Disk Utility opens but there is no initializing option. I have a Mac OS X version 10.4.11 … | |
Please please somebody help me ! I needed help to remove CiD pop-ups !!!!!! I dont wanna to reformat and install everything programmes again please ! help me to remove the pop-ups ! please i beg ! please help me Below is my Hijackthis.log Logfile of HijackThis v1.99.1 Scan saved … | |
Thanks to new firmware (v.1.3) released last Thursday, Dell's Lifecycle Controller now works with system management tools from BMC and Microsoft. Most reports that followed Dell's Thursday announcement focused on the speed and capacity of its EqualLogic storage arrays, not on the software used to manage them. While improvements to … | |
I recently had a home server go down that was running a raid 0 array. The motherboard went out and my backup isn't current. Is the array recoverable? There are a few articles out there that discuss array migration, in this case would I be looking at essentially a array … | |
Hi guys i'm new in C++..:icon_wink: I have a homework that i need to pass soon and i need help because i only have 1 error and i'm staring at it for 2 hours:icon_cry: going back and forth to my book and came up with no solution:icon_sad:. ok so heres … | |
I keep receiving the same output for each record when I run it on the test data. I've tried numerous things...any suggestions? I've worked on this for almost twelve hours straight, not counting previous work. I'm hoping one of you guys/gals who know whats going on can point me in … | |
have a Dell Dimension 3000 and have been working for weeks on trying to get my sound back. My "fine details" follow at the end of my message. I get the yellow exclamation marks and the dreaded code 39 for everything. This happened after I tried stupidly to hook up … | |
Even Microsoft is sometimes faced with the decision of whether to "buy or build." This time it chose to buy. With the acquisition of Opalis Software announced yesterday, Redmond in one stroke takes a major leap in data center process automation. And it couldn't have come at a better time. … | |
I have Toshiba Satellite A40 with Toshiba SD-R2412 CD-RW/DVD-ROM Optical drive. I have to change my optical drive due to lens failure and I bought TEAC DW-224E as per recommendation in Toshiba Notebook Manual provided to me. When I insert and turn on laptop, I get IDE #1 error message … | |
okay. i have a flash drive, and i keep most of my stuff on it. very recently, though, i went to my computer and plugged it in. usually, an icon appears on the desktop when i do that, but it wasn't there. so i looked at the equivalent of my … | |
According to a Search Software Quality survey of 492 IT professionals, 22 percent struggle most with requirements gathering. Yet the same group said they spend less than 12 percent of their time doing it. Not so at [url=http://www.lsi.com]LSI Corp.[/url], which probably made some of the storage silicon in the computer … | |
Hello....I need help about computer I got HP Pavilion a 66665d with Windows Vista Sevice Pack 1.But I more prefer using Windows XP Profesional due to easy & make us to its.Now I heard about Windows 7 which being inform by all my freinds is better than either one of … | |
So my code does everything I want it to do with the exception of when writing to storage I am not sure how to make true and false write as 1 and 0 respectively. I do not know if it's my syntax or my placement within my program...Kind of lost … | |
Hello! everyone!.. I am probably the oldest poster on this forum!. Besides a few others that I belong to!. I am herein joining in an attempt to find out why my darn CD-ROM and my DVD-RW all of a sudden disappeared from my XP Explorer. BIOS sees it fine. When … | |
Hello, I have a Dell inspiron 600m and I ran into this issue last week when I suddenly cant boot up my laptop. A cranky noise from the compartment made me believe that the HDD had crashed and I therefore replaced it with a new WD - EIDE, PATA, one … | |
i need to change my sata mode from AHCI to IDE to reformat my laptop to windows XP. or else i will get a blue screen. i am using Acer Aspire 4736. i jus want to know what is the consequences that i will experience when i change it. | |
You might not think that a 12,000 square foot data center would be anything for the environmental lobby to get excited about, but this is no ordinary IT facility. The Green Data Center ([URL="http://syr.edu/greendatacenter/"]GDC[/URL]) has been built by Syracuse University in partnership with New York State and IBM in order … |
The End.