|
-
May 14th, 2007, 03:22 AM
#1
Thread Starter
Fanatic Member
[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
If your problem has been solved then please mark the thread [RESOLVED].
If i have helped then please Rate my post 
-
May 14th, 2007, 03:32 AM
#2
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.
-
May 14th, 2007, 03:46 AM
#3
Thread Starter
Fanatic Member
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.
If your problem has been solved then please mark the thread [RESOLVED].
If i have helped then please Rate my post 
-
May 14th, 2007, 04:07 AM
#4
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|