View previous topic :: View next topic |
Author |
Message |
tomto Member
Joined: 08 Jul 2007 Posts: 1
|
Posted: Sun Jul 08, 2007 10:54 pm Post subject: Error |
|
|
I just downloaded DekeD 3D editor lite, but everytime i click somewhere with a mouse an window appears with the message:
"Acces violated at adress 00000000. Read of adres 00000000. "
I cant do anything cause everytime i click ok, a new window appears with the same message.
What do I have to do?
Sorry if my english isn't very good. |
|
Back to top |
|
|
Nocturn DeleD PRO user
Joined: 08 Aug 2004 Posts: 635
|
Posted: Mon Jul 09, 2007 12:57 am Post subject: |
|
|
What are your system specs ? Last graphic-card driver installed ? |
|
Back to top |
|
|
Paul-Jan Site Admin
Joined: 08 Aug 2004 Posts: 3066 Location: Lage Zwaluwe
|
Posted: Mon Jul 09, 2007 6:17 pm Post subject: |
|
|
Hi there Tomto,
Welcome to these forums, we are very sorry you are experiencing these problems.
1. Try re-downloading and re-installing the software. Make sure you download the installer, not the stand-alone executable.
2. Make sure you are on the latest version of your graphic drivers. Faulty drivers are the #1 cause of these problems. Even drivers a month old can contain bugs that cause exactly this problem.
If that doesn't solve things, please provide us with as much details about your system as possible
- What OS are you on?
- What videocard do you use?
- Did you install the application in any other location than was suggested by the installer?
- Did the installer throw any expections?
Any information you can provide is much appreciated. We really really want to get this particular problem nailed down! |
|
Back to top |
|
|
jwatte DeleD PRO user
Joined: 26 Apr 2006 Posts: 513
|
Posted: Tue Jul 10, 2007 11:37 am Post subject: |
|
|
As a suggestion: You could add a structured exception handler at the top of the program (WinMain), which contained the following information:
Type of exception
GL renderer string
Version of Windows
Install path
Number of files and folders in the install path
When people post the error message, you'd be a lot closer to solution already :-)
Other improvements include the ability to write a mini-dump (for post-mortem debugging), and the recognition of bad graphics drivers and Windows versions up-front, giving a user-friendly dialog box. |
|
Back to top |
|
|
Paul-Jan Site Admin
Joined: 08 Aug 2004 Posts: 3066 Location: Lage Zwaluwe
|
Posted: Tue Jul 10, 2007 6:24 pm Post subject: |
|
|
Yeah, something like that could be real useful, but we really keep hoping there is just one major issue, and once we clear that one up there is no need to confront the user with all that techinical fluff J/k ofcourse.
Quote: |
and the recognition of bad graphics drivers and Windows versions up-front, giving a user-friendly dialog box |
If we knew how to recognize those bad graphics drivers I think we'd have our problem solved . Do you by any chance know an application that allows you to simulate poor OpenGL support (i.e. some sort of replacement opengl dll, hooks or similar)? |
|
Back to top |
|
|
jwatte DeleD PRO user
Joined: 26 Apr 2006 Posts: 513
|
Posted: Thu Jul 12, 2007 11:02 am Post subject: |
|
|
I just look for the gl renderer vendor string, and disallow anything with "microsoft" in it. That takes care of 90% of the bad cases. Other things you might want to look for and warn about include "matrox" "sis" or "s3" -- case insensitive, of course. (On this subject, note that "nvidia corporation" actually contains the "ati" substring :-)
When you see "microsoft," it means they don't even have real drivers installed, so just post a dialog to the effect that they need to go get real drivers, with some suggested URLs. |
|
Back to top |
|
|
Daaark DeleD PRO user
Joined: 01 Sep 2004 Posts: 2696 Location: Ottawa, Canada
|
Posted: Thu Jul 12, 2007 8:25 pm Post subject: |
|
|
jwatte wrote: |
When you see "microsoft," it means they don't even have real drivers installed, so just post a dialog to the effect that they need to go get real drivers, with some suggested URLs. |
What about the MS OpenGL 1.4 emulated through DX9 driver? _________________
|
|
Back to top |
|
|
jwatte DeleD PRO user
Joined: 26 Apr 2006 Posts: 513
|
Posted: Fri Jul 13, 2007 11:19 am Post subject: |
|
|
I wouldn't want to support that driver. It means users haven't installed the right drivers from the vendors. |
|
Back to top |
|
|
Daaark DeleD PRO user
Joined: 01 Sep 2004 Posts: 2696 Location: Ottawa, Canada
|
Posted: Fri Jul 13, 2007 1:26 pm Post subject: |
|
|
jwatte wrote: |
I wouldn't want to support that driver. It means users haven't installed the right drivers from the vendors. |
That might be their only driver option, and it offers full hardware opengl 1.4 support. What's the problem?
You should just check for the version info. 1.1 means you have no proper drivers, and are using the old MS opengl.dll. If the 1.4 implementation will get the job done, don't discriminate against it.
For all we know, that dx layer might work better for those users than some of the bastardized 'right' opengl drivers on Vista. Trust me, there is nothing 'right' about my current opengl driver. They came with a disclaimer that they might not be suitable for accelerating 3d graphics.
Meanwhile dx works fine, and I imagine that the dx layer would negate some of the gdi + opengl hiccups, artifacts, and bad behaviour that now plagues DeleD. _________________
|
|
Back to top |
|
|
Paul-Jan Site Admin
Joined: 08 Aug 2004 Posts: 3066 Location: Lage Zwaluwe
|
Posted: Fri Jul 13, 2007 5:20 pm Post subject: |
|
|
Thanks for the suggestions, guys. All this would have been solved by long if we had a battery of testing machines here with crappy video support, but for some reason we keep buying these shiny machines with the latest and greatest polygon-pushing techniques installed... poor us. If you have any tips about emulating bad driver support (besides 'installing vista' )... |
|
Back to top |
|
|
Jeroen Site Admin
Joined: 07 Aug 2004 Posts: 5332 Location: The Netherlands
|
Posted: Fri Jul 13, 2007 6:30 pm Post subject: |
|
|
jwatte wrote: |
As a suggestion: You could add a structured exception handler at the top of the program (WinMain), which contained the following information:
Type of exception
GL renderer string
Version of Windows
Install path
Number of files and folders in the install path
|
I think we should have that kind of information (except the exception info) in some sort of General Info dialog box under Info menu anyway. Should be easy to build and could help us out solving problems right away. |
|
Back to top |
|
|
trucker2000 DeleD PRO user
Joined: 11 May 2005 Posts: 1839 Location: Sacramento, California
|
Posted: Fri Jul 13, 2007 11:30 pm Post subject: |
|
|
Paul-Jan wrote: |
Thanks for the suggestions, guys. All this would have been solved by long if we had a battery of testing machines here with crappy video support, but for some reason we keep buying these shiny machines with the latest and greatest polygon-pushing techniques installed... poor us. If you have any tips about emulating bad driver support (besides 'installing vista' )... |
You could download and install one of those "old" graphics drivers to test out what you are working on. Then, you can revert back to your "latest and greatest" drivers after you finish. _________________ Some day I will grow up and be a real modeler.
"Never give up! Never surrender!!"
Sys specs:
asus
8 gigs ram
Invidia gtx560 video card
Windows 8 (worst op sys Ever) |
|
Back to top |
|
|
Daaark DeleD PRO user
Joined: 01 Sep 2004 Posts: 2696 Location: Ottawa, Canada
|
Posted: Sat Jul 14, 2007 2:25 am Post subject: |
|
|
Paul-Jan wrote: |
If you have any tips about emulating bad driver support (besides 'installing vista' )... |
Code: |
c:\Windows>
c:\Windows>cd..
c:\>copy io.sys c:\windows\system32\opengl32.dll
c:\>echo hahaha!
hahaha!
c:\>exit |
_________________
|
|
Back to top |
|
|
Paul-Jan Site Admin
Joined: 08 Aug 2004 Posts: 3066 Location: Lage Zwaluwe
|
Posted: Sat Jul 14, 2007 6:58 am Post subject: |
|
|
Trucker: My thoughts exactly, but for some reason I can't find a download site for severely broken NVidia drivers...
Daaark: Tried it. I am actually typing this from a DOS prompt now, through a telnet 80 session.
[Update]While doing a rollback on my NVidia driver I am now in a situation where all of my OpenGL support is down the drain and I can actually reproduce at least some of these problems. Yahoo. Kinda.[/update]
Last edited by Paul-Jan on Sat Jul 14, 2007 7:46 am; edited 1 time in total |
|
Back to top |
|
|
Paul-Jan Site Admin
Joined: 08 Aug 2004 Posts: 3066 Location: Lage Zwaluwe
|
Posted: Sat Jul 14, 2007 7:42 am Post subject: |
|
|
While waiting for machines to reboot, this thought occurred to me:
Quote: |
It's like lending your car to a friend, then having him complaining how it crashed on him while he drove it out of the driveway. It could be anything: the breaks, the windshield, the gearbox... but usually it's just a bad driver. |
I consider myself pretty funny. Then again, I haven't had my morning coffee yet, so perhaps I shouldn't be posting on public forums right now. |
|
Back to top |
|
|
|