|
I'm working with a managed exe that crashes immediately when run. Usually I'd expect a dialog which allows an option to launch the debugger but no such luck in this case. Also, the program crashes too quickly for me to use attach to process in VS.
Started by James Cadd on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Also consider using Assembly Binding Log Viewer to determine()); }
This crashes immedately....
Immediate crash?
I'd use ildasm an exception, it will usually just crash.
Breakpoint (like in the main function) and single setp your way through .
|
|
When we upgraded MVC beta to MVC RC1 the development webserver that visual studio has suddenly crashed at some point in the application. After some searching I narrowed the bug to this simple line:
if (!helper.ViewData.ContainsKey("SomeString"))
SomeString...
Started by MichaelD on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The development Web server crashes, it is generally because of the stack overflow in your code (or, obviously.
|
|
Hi,
I have a really strange problem with an quite simple ASP.NET (.NET 3.5) Site and the IE6.
It seems sometimes and on certain machines, the IE6 crashes while displaying the site. CSS was already eliminated as a reason for the crashes.
After a while ...
Started by MADMap on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
How exactly does IE 6 crash? If you are getting the infamous Operation Aborted error try moving any looking at the version information for the browser's on which it crashes and see if you can narrow down this link:
http://immike.net/blog....
|
Ask your Facebook Friends
|
I'm having problems with my Vista64 machine.
It crashes or hangs a couple of times per day, usually when it's idle. When it crashes the screen frezes and and it takes no input from the mouse or the keyboard.
Where do it start looking?
Started by Niels on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
To crash, especially if it's in any way software related..
|
|
If a thread sets a shutdown hook using
Runtime.getRuntime().addShutdownHook();
calls via jna the method:
kernel32.CreateToolhelp32Snapshot (0x 2, 0)
it crashes the VM. If I call the same method in the
WindowListener.windowClosing()
hook, the call does...
Started by jumar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Post part of the crash report on pastebin or the like.
Posting the VM crash report should help.
|
|
When a .Net service crashes, does the ServiceBase.OnStop method get called? Will the service be marked as stopped regardless of whether or not the OnStop method is called?
Started by Orion Adrian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If by crashes you mean.
Services should be as robust as possible.
It is still not a good idea.
|
|
Can you tell me how to recover data from hard disk and backup it in another storage in case the operating system will not load or crashes?
Started by Nrew on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Is to regularly backup data to an external/remote drive, so that if a disk does crash , you go to your latest.
|
|
I have an XP machine on which Adobe Acrobat Reader crashes every time as soon as it starts. I've tried reinstalling 9 and it doesn't help at all. If I use it to open a PDF, it displays the first page, and can be scrolled for about 3 seconds before it ...
Started by jsight on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Then I would.
First I would try and pinpoint if it crashes with any pdf or only certain pdf's.
|
|
I have a Windows service that exits unexpectedly every few days. Is there a simple way to monitor it to make sure it gets restarted quickly if it crashes?
Started by Liam on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
StrComputer = "." strSvcName = "YOUR_SERVICE_NAME" set objWMI = GetObject("winmgmts... .
You can schedule a simple vbs script like this one to restart periodically the service on the computer if needed .
This was my answer on a similar thread Hope this helps.. .
|
|
Hi, I've written an iPhone app and only tested it with the simulator as I don't have an actual iPhone. If I Build and Go, I can see the app running. But if I go to Finder and then open it through the project's build folder, it just crashes immediately...
Started by alamodey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The simulator sets up the iPhone.
It crashes because double-clicking it causes Mac OS X to try and run app tries to dynamically link UIKit, fails to do so, and crashes.
The simulator as far as I know.
|