Tagged Questions
0
votes
1answer
191 views
What could be causing this memory access error (C++)? Might be undefined behavior?
I have a relatively large class that I'm working with and it's all worked fine so far (note: I didn't actually write the class, I'm just adding some functionality). However, after declaring one more ...
0
votes
1answer
293 views
Unhandled exception calling a .exe file on pocket pc emulator application
I'm trying to run this code on vc2005 on pocket PC emulator but it gives me a win32unhandled exception
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process Proc = ...
1
vote
3answers
3k views
Console Application - Can't Catch Unhandled Exception
I have written a very simple C# Console Application which will open a Crystal Report, refresh it and save it as a PDF to a specified location.
When running within VS2005 everything runs fine; the pdf ...