Re: [MonoTouch] debugger not connecting with 2.6 RC 1

2011-08-27 Thread jeffsim
Sorry for the noob Q, but how does one revert to a previous version? I'm hitting the same debugger-not-connecting issue and would like to revert until RC3, but can't find the download link. Thanks, Jeff -- View this message in context:

Re: [MonoTouch] Close an application definitively

2011-08-27 Thread Robert Jordan
On 27.08.2011 01:25, catullum wrote: I need that my application should be closed by an button. but it should be closed definitively. The application dose some thing on start that it dosed when you press only the home button. As Jason wrote, Apple will likely reject such an app. Add this to

Re: [MonoTouch] Close an application definitively

2011-08-27 Thread Robert Jordan
On 27.08.2011 15:06, Robert Jordan wrote: On 27.08.2011 01:25, catullum wrote: I need that my application should be closed by an button. but it should be closed definitively. The application dose some thing on start that it dosed when you press only the home button. As Jason wrote, Apple

Re: [MonoTouch] System.MissingMethodException: Method not found: 'System.Type.op_Equality'.

2011-08-27 Thread Sebastien Pouliot
Hello Guido, System.Type.op_Equality is new in .NET 4.0 and (iirc) is used by the compiler. So your /Users/guivho/Mono/MCSubs/bin/Debug/MCSubs.dll is likely compiled against .NET 4.0. MonoTouch has only partial support for 4.0 (otherwise it looks like the Silverlight profile). To fix this you

Re: [MonoTouch] System.MissingMethodException: Method not found: 'System.Type.op_Equality'.

2011-08-27 Thread Guido Van Hoecke
Hello Sebastien, System.Type.op_Equality is new in .NET 4.0 and (iirc) is used by the compiler. So your /Users/guivho/Mono/MCSubs/bin/Debug/MCSubs.dll is likely compiled against .NET 4.0. MonoTouch has only partial support for 4.0 (otherwise it looks like the Silverlight profile). To fix

Re: [MonoTouch] Close an application definitively

2011-08-27 Thread catullum
thanks i will try it. I develop apps for Company use only my they wont see the app store. i deploy it to the request devices directly. best regards fabrizio -- View this message in context: http://monotouch.2284126.n4.nabble.com/Close-an-application-definitively-tp3772275p3773261.html Sent

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread catullum
sorry this is to less, post the class portion i think to know the problem but i need more infos. -- View this message in context: http://monotouch.2284126.n4.nabble.com/How-do-I-fix-this-tp3772103p3773276.html Sent from the MonoTouch mailing list archive at Nabble.com.

Re: [MonoTouch] Close an application definitively

2011-08-27 Thread catullum
Ok it works fine. thanks. but is there a way to do it with an UIButton ? -- View this message in context: http://monotouch.2284126.n4.nabble.com/Close-an-application-definitively-tp3772275p3773337.html Sent from the MonoTouch mailing list archive at Nabble.com.

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread Dean Cleaver
This is the entire view controller. I put a * on the line that's failing. using System; using System.Drawing; using System.Threading; using MonoTouch.Foundation; using MonoTouch.UIKit; using Xception.iPhone.UI; namespace KleverLogic.FlashValet.iPhone.Valet { public class

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread Jeff Stedfast
Hi Dean, If this.NavigationController is null, that suggests that there is no parent NavigationController in the stack. Is it perhaps a toplevel view controller or a child of some other type of controller? Jeff ___ MonoTouch mailing list

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread Dean Cleaver
No - it's just a standard view controller. The button has been clicked many times before, always worked. The client clicked it a dozen times, same error every time. Force-closed the app, ran it again and it worked fine, and still works fine. By some freak occurrence on that day, the navigation

Re: [MonoTouch] How do I fix this?

2011-08-27 Thread catullum
Sorry but in the code i cant see the Controller I miss some like this: UiNavigationController NavigationController = new UiNavigationController(); ... … View.add(NavigationController); -- View this message in context: