-
[2005] Error Message
Hi guys,
I am using the .net compact framework on a Pocket PC.
Now i am getting the following error in a function in my application and i have no idea what it means so was wondering whether anybody else could help me. The error is:
Exception caught in frmQuestionnaire.MiSaveAndExit_click().
Stack Trace: at Microsoft.AGL.Common.MISC.HandleAr()
at ControlCollection.get_InnerList()
at System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator()
Now i know where the error is referring to its just the three lines in the stack trace that i dont understand.
Thanks in advance for any help
:afrog:
-
Re: [2005] Error Message
The stack trace is the series of methods that were called to get to the method that threw the exception. The top line is the method that threw the exception, the next line is the method that called that method and so on.
-
Re: [2005] Error Message
I know that...i just dont know what its referring to? I'm guessing its a built in method because theres no code that i have written that looks like whats causing the error.
-
Re: [2005] Error Message
Well, the System.Windows.Forms.Layout.ArrangedElementCollection.GetEnumerator() method is listed in the MSDN documentation. The ControlCollection.InnerList property is declared private. The top one I have no idea, but you could have a good look for it with .NET Reflector.