Click here to Skip to main content
15,896,730 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
am getting Exception has been thrown by the target of an invocation error in my below coding...when i start my vs2005 the below coding working...after searching the some folder my below coding was not working....


C#
internal static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        private static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Main());
        }
    }
}
Posted
Comments
CHill60 22-Feb-13 9:45am    
If you wrap this code with a Try-Catch block you can dump the Exception.StackTrace to find out precisely where the exception is being thrown. Alternatively you could use the debugger and the F11 key to find the line of code that's the problem. When you've found the point of failure post the code here using the Improve question link

1 solution

The first place I would look is in teh constructor of your Main class, which better be a decendent of the Form class.

Start your application in the debugger not by hitting the Start button in Visual Studio, but by hitting F11 to step into the first line of your code, keep hitting F11, one line at a time, and watch the execution of your startup code and variables. You'll eventually hit the line that's failing.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900