Values Does not fall within the expected range
-
Hi, all. I am developing a PocketPC Application in Visual Basic2008(VB.Net) and Compact Framework2.0.There I was declared a Parent form and four child form.There I declared in child form load event: Me.Parent=MainForm It's working fine.But when I switched to Compact framework3.5.This code shows error. "Values Does not Fall within the Expected Range." Please help me.
-
Hi, all. I am developing a PocketPC Application in Visual Basic2008(VB.Net) and Compact Framework2.0.There I was declared a Parent form and four child form.There I declared in child form load event: Me.Parent=MainForm It's working fine.But when I switched to Compact framework3.5.This code shows error. "Values Does not Fall within the Expected Range." Please help me.
Try to debug your application in compact framework 3.5 and find out where erectly error is raised. because this error is raised basically some invalid argument send to common language runtime. :-\
Pavan Pareta
-
Try to debug your application in compact framework 3.5 and find out where erectly error is raised. because this error is raised basically some invalid argument send to common language runtime. :-\
Pavan Pareta
Thanks for your reply.I run this in debug mode in compact framework 3.5.I declare the form is Dim Config As frmConfig After that I wrote Config=New frmConfig() Config.Show() After executing of last line the same error is coming at the same line. Me.Parent = frmMDIMain