I am getting this error and Common Language Run time detected an invalid program when i debug my application using F5. If i use CNTRL+F5 it is working fine why it is happening can any one tell.

Actually this one is coming only if i add DeployLX licensing which is a licensing software from XHEO.

link|improve this question

Please post your code, otherwise it will be difficult to say anything about it... – nico Dec 4 '10 at 8:28
Nothing there to post my code i just create a blank solution – User Dec 4 '10 at 9:06
Are you running on x64 Windows? – Tom Dec 4 '10 at 9:37
No on x86 i am running – User Dec 4 '10 at 9:51
feedback

2 Answers

up vote 3 down vote accepted

The behavior you are experiencing is undoubtedly a consequence of your application being run with the debugger attached. When you start your application using Ctrl+F5, you are telling Visual Studio to "Start Without Debugging", as compared to just pressing F5, which tells Visual Studio to "Start Debugging". The difference between the two commands is simply that the former does not attach the debugger to your code's process. Note that this is not the same as the difference between a Debug build and a Release build! Either build type can be run with or without the debugger attached.

Running your application without the debugger attached means a couple of different things:

  • Breakpoints will not be hit
  • Debugging symbols (your .PDB files) are not loaded, so you cannot step through the code
  • Statements involving the System.Diagnostics.Debug class will not be executed
  • In C++, variables will not be initialized to their default values (but rather left as uninitialized)

In your case, I would guess that the exception you're seeing is being caught and handled somewhere higher up the stack from where it is thrown (presumably by some of the code provided by the DeployLX licensing stuff, although I don't know anything about this and have never used it) and therefore not shown unless you have the debugger attached. With the debugger attached, the exception is logged and displayed for informational purposes, regardless of whether or not it is handled appropriately.

You didn't explain exactly where this error is being displayed and how you are "getting" it. But if you'd like to customize the way exceptions are handled when the debugger is attached to the process running your code, open the "Debug" menu and click on the "Exceptions" option. From there, you can choose to break on all exceptions, even those that are handled, if you'd like to see what code is throwing the exception.

link|improve this answer
I am getting the exception some times and some time not i found that the exception is raising at this point _license = SecureLicenseManager.Validate( this, null, info ) – User Dec 4 '10 at 9:45
@Dorababu: Sounds to me like your license is not validating? Like I said, I honestly have never even heard of DeployLX licensing, so maybe someone else can help me out here. The best suggestion that I have is either to try fixing whatever is causing your license to fail validation, or contact the company who provided you the licensing code since that's clearly where the problem lies. – Cody Gray Dec 4 '10 at 9:47
I contacted them he said that try to deploy it by using debug an cpu but the issue still remains same – User Dec 4 '10 at 9:52
feedback

According to this question, Clean Solution might be a good bet.

link|improve this answer
Cleaning the solution in the sense i have to recreate the application or should i reinstall the visual studio – User Dec 4 '10 at 8:43
In Visual Studio, if you right-click on the solution file in Solution Explorer, there is an option to "Clean Solution". – ClosureCowboy Dec 4 '10 at 8:48
I tried that but it does not make sense still the issue is coming for me – User Dec 4 '10 at 8:51
2  
The only way to resolve this is to contact the licensing vendor. – logicnp Dec 6 '10 at 4:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.