I,m recording a video on button click.If i record morethan 3 times continously on button click it was throwing an exception.The generated exception was:
Unhandled exception at 0x00000000 in myapp.exe: 0xC0000000: Access violation reading location 0x00000000.Can any one help me how to solve this problem?.
Thanks in advance.
maheshPosted Jul 18, 2011, 12:42 AM
maheshPosted Jul 18, 2011, 12:41 AM
VulpesPosted Jul 16, 2011, 4:50 PM
Sam HobbsPosted Jul 16, 2011, 3:41 PM
When you get that error during debugging, the debugger will show you the line that the error occurs at. What do you see there?
Note that catastrophic errors such as that occur when a program ignores other errors. Programmers don't like dealing with the possibility of errors so then when an error occurs they get an error such as what you are getting now. Hopefully you will get a clue to the problem by looking at the source code line where the error occurs.