The plug in(xtra) is imbedded in the program and the zipping and unzipping
of
the files happen without the user knowing it.
The program was authored in Macromedia Direstor MX 2004.
When the program trys to zip the file for the first time it will crash the
whole program.
I do not get a specific error message. Just tht the program has
encountered
an error and will close.
I have used a log file to trace the problem and it occurs at the code to
zip
the file.
I have never been able to duplicate the error here.
The common factor of the error is that it only happens on new computers
that
come from places like Best Buy or Curcuit City with Windows already
installed.
I have gotten a new home computer form Dell with Vista Home edition on it
and not had a problem.
Hi Raymond,
I'd guess the process is hitting an Access Violation (ie, an invalid memory
reference, a 0xC0000005 error).
To confim this, and see what is causing the AV, you'd usually run the
application in a debugger. When the process hits the AV, the debugger will
catch the exception, instead of letting the app close. This allows you to
investigate what particular module within the process (EXE, DLL, OCX, etc)
is misbehaving, while everything is still loaded in memory.
The "standard" Windows debugger is WinDBG, which you can download as part of
the Windows Debugging Tools package from:
http://www.microsoft.com/whdc/devtools/debugging/default.mspx
There are many other 3rd party debuggers available, as well. WinDBG is not
terribly difficult to use, but it's not especially "user-friendly", either -
if you haven't used it before, you'd probably want to track down a colleague
with debugging experience, to walk you through it. However once you get the
hang of it, then any process on the machine is an open book to you; you can
see exactly what is happening and why.
If it is only happening on some machines and not others, I'd guess that the
offending machines have some additional software installed which is getting
loaded into the process space. Compare this configuration of the offending
machines versus the non-offending machines (installed software, etc), and
the culprit is likely somewhewre in the delta.
I'm alway s open to new bugs, but ... this one doesn't sound like a bug or
limitation of Vista Home OEM, as such.
Good luck with it,