|
|
2x3i5x
Thanked: 116 Posts: 2,163
Computer: Specs Experience: Familiar OS: Windows Vista
|
 |
« Reply #1 on: December 22, 2011, 02:56:42 PM » |
|
assuming a windows pc you're using, use the System Restore to revert pc back to way it was before you did anything about driver updates.
|
|
|
|
|
|
|
Daisymae70
Thanked: 5 Posts: 100
Computer: Specs Experience: Experienced OS: Windows 7

|
 |
« Reply #3 on: December 22, 2011, 09:47:31 PM » |
|
Check out these links. And what Operation system are you running? first-RunDLL32.exe-entry point not foundhttp://support.microsoft.com/kb/832323the procedure entry point _except_handler4_common could not be located in the dynamic link library msvcrt.dll. http://in.answers.yahoo.com/question/index?qid=20100320004848AAWKF5r
|
The Truth is the Truth whether you believe it or not.
Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.
You can lead a horse to water but you can't make him drink.
|
|
|
|
|
Daisymae70
Thanked: 5 Posts: 100
Computer: Specs Experience: Experienced OS: Windows 7

|
 |
« Reply #5 on: December 22, 2011, 10:34:28 PM » |
|
I just copied this answer from one of the links, however, both links indicate both errors might have to do with a service pack issue. When was the last time you updated your most current Win xp SP. I am not entirely sure this will fix the problem. I am just troubleshooting the errors right now.
The error is NOT caused by your application writing over MSVCRT.DLL, it is caused by the fact your game developer used either a newer or older library for that DLL when the game was created. Since this is a fairly new game I expect that your system is a little out of date.
Best solutions are to a) ensure you have the most recent Service Pack installed for the O/S b) if that doesn't fix it then check the support site for the game to see if they have a fix or patch available.
|
The Truth is the Truth whether you believe it or not.
Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.
You can lead a horse to water but you can't make him drink.
|
|
|
|
|
Daisymae70
Thanked: 5 Posts: 100
Computer: Specs Experience: Experienced OS: Windows 7

|
 |
« Reply #7 on: December 24, 2011, 08:47:37 PM » |
|
Which version of Deamon tools do you have? Have you tried uninstalling it to see what effect it has on your computer.
|
The Truth is the Truth whether you believe it or not.
Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.
You can lead a horse to water but you can't make him drink.
|
|
|
|
|
|
|
|
|
Daisymae70
Thanked: 5 Posts: 100
Computer: Specs Experience: Experienced OS: Windows 7

|
 |
« Reply #11 on: December 25, 2011, 09:25:30 AM » |
|
well i have a geforce 210. i recently tried to update the driver but a last step of updating the step said that the installation wasn't completed. now every time i start my computer there are two errors that come. first-RunDLL32.exe-entry point not found the procedure entry point _except_handler4_common could not be located in the dynamic link library msvcrt.dll. this error also come when i open my nvidia control panel and also whew i start a game with great graphics please help me this error has slowed down my pc too. i have a HCL pc with pentium 4 processor and 1 gb ram and 1 gb ram with graphics card.
This probably has nothing to do with anything. What antivirus are you using? I was wondering if something else might be causing the slow down of your computer. Ok, just to recap. You tried to update geforce210 drivers but were given message wasn't completed. and got the errors you mentioned. So the problems started with updating driver and everything with your computer was working "perfectly" up to this point?
|
The Truth is the Truth whether you believe it or not.
Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.
You can lead a horse to water but you can't make him drink.
|
|
|
|
|
patio Moderator
Thanked: 1069 Posts: 11,351
Experience: Beginner OS: Windows 7

Maud' Dib
|
 |
« Reply #13 on: December 25, 2011, 05:56:06 PM » |
|
Daemon Tools...no matter what version will mess up hardware profiles... If you are not currently using it ...get rid of it.
|
" All generalizations are false, including this one. "
|
|
|
|
|
patio Moderator
Thanked: 1069 Posts: 11,351
Experience: Beginner OS: Windows 7

Maud' Dib
|
 |
« Reply #15 on: December 25, 2011, 10:01:59 PM » |
|
See Above...
|
" All generalizations are false, including this one. "
|
|
|
2x3i5x
Thanked: 116 Posts: 2,163
Computer: Specs Experience: Familiar OS: Windows Vista
|
 |
« Reply #16 on: December 25, 2011, 11:50:06 PM » |
|
has it been suggested to try and uninstall drivers and then attempt reinstall to see if things would be properly installed this time around?
|
|
|
|
|
BC_Programmer
Thanked: 697 Posts: 15,876
Computer: Specs Experience: Beginner OS: Windows 7

Pinkie Pie is best pony
|
 |
« Reply #17 on: December 26, 2011, 12:20:53 AM » |
|
On my Win7 System:
C:\Windows\System32>dumpbin /exports msvcrt.dll | find /i "_except_handler4_common" 346 159 00023E27 _except_handler4_common
File Version of the file is 7.0.7600.16385
running the same command on a fully patched XP SP3 system- I get nothing. No _except_handler4_common is exported in the XP version. (file version for that one is 7.0.2600.5701, btw).
I also tried installing the VC++ 2008 and 2010 redistributables but neither one updated the file.
However. The exception function being called clearly marks it as a Exception handler; the number (4) and the fact that there are in fact similar exports for 3, 2, and 1 in the file led me to believe that it may be that the file msvcrt.dll isn't considered to be part of the c-runtime (in fact, most systems I've seen, it is only updated by the OS or service packs). So, those wouldn't be changed regardless. This leads me to think (further) that it's related to a compile-time option, whereby you can choose to either statically link the C Runtime, or dynamically link to it as a dll, in the latter case, most programs will link against msvcrt.dll- and thus the problem, since depending on the version of the C run-time .lib file that is being used, it will try to link against functions that don't exist in earlier versions of windows.
The answer, from what I can gather, is that the programs were compiled wrong. they aren't supposed to link against msvcrt.dll- they should be linking against msvcr80.dll (or the appropriate version for the compiler in use). msvcrt.dll is only to be linked against by window applets and components. Additionally, it should not be updated by anything other than service packs or KB hotfixes. (this includes things like the redistributables).
The problem therefore, has several causes- either the software is stupidly(not surprising given the software in question) linked against msvcrt.dll for no good reason, or, more likely, there is some other component or DLL copied from a Vista system onto the XP system, possibly in the hopes of "upgrading" it, and of course the Vista/7 file depends on the Vista/7 OS version of the dll.
|
|
|
|