Posts Tagged ‘Fatal’

When I Try To Open My Hp Image Zone, I Get A Hpqthb08.exe Fatal Error . Does Anyone Know How To Fix It?

Wednesday, February 3rd, 2010

in the same error box it also says CLR error:80004005. i’ve tried updating my drivers but that did’nt work either. I’m not too computer smart,so,any “easy” answer would be greatly appreciated. thanks to all.

Is There A Way To Fix Hpqthb08.exe – Fatal Error. Damaged By Monarona Dona Virus.?

Tuesday, February 2nd, 2010

When I tried to fix the MonaRonaDona virus according to responses I read on the web regarding the virus, I seemed to have done some damage to my computer. Mainly my shortcuts aren’t recognized, also I no longer can use my hp picture program that originally came pre-installed on my computer. Is it wise to do a System Restore?

My Pc Says A Message Saying Molebox Fatal Error And Below It Says Hook Dll Error How Do I Fix It?

Friday, January 8th, 2010

THis happens whenever i turn on my PC i have Xp and i am not sure if it is a hacker issue. Please help. I am trying to fix it for my mother whilr i am in town
Thanks
John

Why Am I Getting Link : Fatal Error Lnk1104: Cannot Open File “debug/mfc_practicals.exe” Error?

Thursday, December 17th, 2009

I am getting this error while executing the program.
I am using windows 7 os.

While Trying To Uninstall Programs From My Windowsxp, I Keep Getting The Fatal Error – Reinstall Exetender.exe?

Friday, December 4th, 2009

How can I reinstall EXEtender.exe and also I get an error telling me to install (install.log) Help, I don’t know what to do???

Where Do I Find A Repair Tool To Fix A Fatal Exe Error In Hkey_local_machine\software\fi…

Tuesday, October 6th, 2009

continuance of previous question. has to do with a screen saver (fish tycoon) registry fatal error.

Hpzsetup.exe Fatal Error During Installation?

Monday, September 14th, 2009

an hpzsetup.exe fatal error keeps popping up on my computer and i cant get it to come off.

I’m Using Windows Xp And Having Fatal Error Messages And System 32 Dll Errors, Please Help?

Sunday, September 13th, 2009

OK im using windows xp with service pack 2 on a compaq presario. Well this is the second posting about this certain issue. My computer has been giving me this error message when i try to load certain programs “The system DLL user32.dll was relocated in memory. The application will not run properly. The relocation occurred because the DLL C:\Windows\System32\Hhctrl.ocx occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.” Well I’ve tried to do a system recovery, but when i tried that i got this message which is unusual for it to do this, “Stop:c000021a {Fatal System Error} The Windows Logon Process System Process Terminated unexpectedly with a status of 0xc0000005 (0×00000000 0×00000000) The system has shut down” I’ve tried just about everything, a defrag, certain programs like registry fixers and stuff, and none of it helps, not even a system restore would work. i cant create a recovery cd either. please help

My System Has Passed Thru Fatal Error “c000021a” With Status “0xc0000022″ Sys Restore Failed,,any Solutions??

Wednesday, August 5th, 2009

like any anti virus say like “”"avg”"”……i have put the details up so as to get a straight solution for example the “”"the status code & the fatal error code”"”"

Error: Fatal Error C1083: Cannot Open Include File: ’sys/ipc.h’: No Such File Or Directory

Thursday, July 30th, 2009

I am doing C program to create shared memory object. While compiling, I have got the above error. Please some one help me in solving this.
Here is my program:
#include
#include
#include
#include
#define SHMSZ 27
main()
{
char c;
int shmid;
key_t key;
char *shm, *s;
/*
* We’ll name our shared memory segment
* “5678″.
*/
key = 5678;
/*
* Create the segment.
*/
if ((shmid = shmget(key, SHMSZ, IPC_CREAT | 0666)) < 0) {
perror("shmget");
exit(1);
}
/*
* Now we attach the segment to our data space.
*/
if ((shm = shmat(shmid, NULL, 0)) == (char *) -1) {
perror("shmat");
exit(1);
}
/*
* Now put some things into the memory for the
* other process to read.
*/
s = shm;
for (c = 'a'; c <= 'z'; c )
*s = c;
*s = NULL;
/*
* Finally, we wait until the other process
* changes the first character of our memory
* to '*', indicating that it has read what
* we put there.
*/
while (*shm != '*')
sleep(1);
exit(0);
}