Re: [MonoTouch] Iphone Show Modal Below NavBar

2013-01-30 Thread James Darbyshire
The other option is to show a navigation controller modally, which contains your view. You could add the same buttons and text to it. I'm unsure why you would want to show the nav bar from the previous view? Regards, James On 30/01/2013, at 10:29 PM, Nic Wise wrote: > I'm not sure that you c

Re: [MonoTouch] Blank Dialog EntryElement text on device

2013-01-16 Thread James Darbyshire
I also intermittently see this issue, not using reflection. Restarting the app sometimes fixes the problem. Not 100%, but I think it is due to where the EntryElement is created (LoadView, Ctor etc. ) I will post a code example tomorrow. Regards, James On 16/01/2013, at 8:44 AM, Rolf Bjarne Kv

Re: [MonoTouch] Load image from native library resources

2012-12-15 Thread James Darbyshire
Shameless plug, but here is a blog post I wrote about resources in MT: http://macropus.net/blog/2012/05/12/resources-in-monotouch-assembly/ Regards, James On 15/12/2012, at 8:10 AM, Dennis Welu wrote: For the record, the build action I had to set to EmbeddedResource, as BundleResource was not

[MonoTouch] Trace SQLite on MonoTouch

2012-12-05 Thread James Darbyshire
Hi all, I have a problem with one of my apps and slow queries. Is there a way of tracing SQLite on monotouch? I am using Praeclarium's SQLite-net (but I think it would be outside this layer). Regards, James Darbyshire jamesdarbysh...@gmai

Re: [MonoTouch] Thanks Everyone!

2012-12-05 Thread James Darbyshire
No dramas mate. Happy with you using anything that I said. Could be dangerous! I'll await the update. Hope the Apple reviewers haven't given up for Xmas yet! Regards, James http://www.macropus.net On 05/12/2012, at 9:06 PM, Dermot O Sullivan wrote: Thanks for all the comments guys. Downloads

Re: [MonoTouch] How is your mono touch setup?

2012-11-30 Thread James Darbyshire
everything... Only develop on Windows if I have to. Maybe VMWare Fusion is a better choice than Parallels. Regards, James Darbyshire jamesdarbysh...@gmail.com On 30 November 2012 19:11, Alec Tucker wrote: > Hi, > > I also use MonoDevelop on a MacBook with VS running on a virtual mach

Re: [MonoTouch] How is your mono touch setup?

2012-11-29 Thread James Darbyshire
I used to do the VM thing when I needed to do something on Windows, but I found that it really caned the RAM and CPU on my MacBook. Recently I have set up my old desktop to run Windows, and left it on all the time. When I want to do dev on the Windows box I just RDP into it. I use MonoDevelop for

Re: [MonoTouch] Good/Simple Source control System! Github Sucks!

2012-11-24 Thread James Darbyshire
ALLY wants you to use the command line.. I mean really? we have not realized that a well designed GUI is easier? Thanks, Kris Bloom Extreme Velocity 3D www.ExtremeVelocity3d.com On Nov 24, 2012, at 3:56 PM, James Darbyshire wrote: Hi Kris, What you are describ

Re: [MonoTouch] Good/Simple Source control System! Github Sucks!

2012-11-24 Thread James Darbyshire
SVN does not. VSS is the only one I k ow if that uses that model. Regards, James On 25/11/2012, at 8:59 AM, Kris Bloom wrote: Does it do single file check in/check out etc? Thanks, Kris Bloom Extreme Velocity 3D www.ExtremeVelocity3d.com On Nov 24, 2012,

Re: [MonoTouch] Good/Simple Source control System! Github Sucks!

2012-11-24 Thread James Darbyshire
Hi Kris, What you are describing is the VSS way of doing things. Checking files in and out is something which VSS uses to ensure concurrency, whereas other source control systems allow developers to work at the same time and merge their changes. I think you have 2 choices: 1. Learn how to use a

Re: [MonoTouch] MonoTouch.Dialog -> modal presentation with NavigationBar

2012-11-07 Thread James Darbyshire
Iki, That's what I do, and from what I understand is current best practise. Regards, James On 03/11/2012, at 4:37 AM, Iki wrote: > > Hello everyone, > > i have my main application screen with 3 buttons, one of which is settings, > after its pressed, new DialogViewController is presented.

[MonoTouch] MT.D EntryElement UITextField not appearing [sporadic]

2012-10-29 Thread James Darbyshire
itle) { > _section > }; > } Rebuilding and redeploying the app fixes the problem, though sometimes I have to do this multiple times. Has anyone else had this problem? Is there a fix? Bug? Thanks, Macropus Regards, James Darbyshire jamesdarbysh...@gmail.com ___

[MonoTouch] UG/Meetup in Sydney, Aus

2012-10-26 Thread James Darbyshire
rt it out. > Here's some more info about me <http://www.macropus.net/about-me> (the > picture is old..), and if you want to lend a hand organising that would > be greatly appreciated! > Regards, > M Regards, James Darbyshire jamesdarbysh...@gmail.com ___

Re: [MonoTouch] Any idea what this could be?

2012-10-16 Thread James Darbyshire
To be blunt, we can't help without having code to look through. MonoTouch doesn't just add method calls, and throw exceptions on its own. My guess is that your problem is probably an incorrect use of an API or object somewhere. iOS application development is a lot more accessible now, thanks

Re: [MonoTouch] Any idea what this could be?

2012-10-12 Thread James Darbyshire
To clarify: The selector is akin to a method signature. ObjC can't find a method with that signature. When I have had this problem in the past (not in the WillEnterForeground override), it has been a memory reference problem. Regards, James On 13/10/2012, at 12:18 PM, James Darbyshire

Re: [MonoTouch] Any idea what this could be?

2012-10-12 Thread James Darbyshire
classes. Starting to look at that with the view that “something might be wrong somewhere” is not an enthralling task. I don’t have a single thing to go on – not even a hint as to what class, nothing. It’s like looking for a needle in a haystack. Dino *From:* James Darbyshire [mailto:jame

Re: [MonoTouch] Any idea what this could be?

2012-10-12 Thread James Darbyshire
ectly to achieve that? Dino *From:* James Darbyshire [mailto:james.darbysh...@blazeware.net] *Sent:* Friday, October 12, 2012 19:35 *To:* Dean Cleaver *Cc:* monotouch@lists.ximian.com *Subject:* Re: [MonoTouch] Any idea what this could be? To be blunt, we can't help without having co

Re: [MonoTouch] Any idea what this could be?

2012-10-12 Thread James Darbyshire
To be blunt, we can't help without having code to look through. MonoTouch doesn't just add method calls, and throw exceptions on its own. My guess is that your problem is probably an incorrect use of an API or object somewhere. iOS application development is a lot more accessible now, thanks to

Re: [MonoTouch] Any ideas what causes this?

2012-10-09 Thread James Darbyshire
Also, is the InnerException property populated? Can you see that from your logs? Regards, James On 08/10/2012, at 11:00 PM, James Darbyshire wrote: > Dino, > > For the 'No route to host' exception, can you try using an IP address rather > than a DNS record? &

Re: [MonoTouch] Any ideas what causes this?

2012-10-08 Thread James Darbyshire
I stand corrected! Regards, James On 09/10/2012, at 9:08 AM, Dean Cleaver wrote: > System.Net.HttpWebRequest.EndGetRequestStream (IAsyncResult asyncResult) ___ MonoTouch mailing list MonoTouch@lists.ximian.com http://lists.ximian.com/mailman/listinfo

Re: [MonoTouch] Any ideas what causes this?

2012-10-08 Thread James Darbyshire
there? Dino *From:* James Darbyshire [mailto:james.darbysh...@blazeware.net] *Sent:* Monday, October 08, 2012 07:03 *To:* James Darbyshire *Cc:* Dean Cleaver; monotouch@lists.ximian.com *Subject:* Re: [MonoTouch] Any ideas what causes this? Also, is the InnerException property populated? Ca

Re: [MonoTouch] Any ideas what causes this?

2012-10-08 Thread James Darbyshire
termittent. I have exception handling in every single function in the entire app – but these exceptions are not occurring anywhere in my code – that’s my core issue. Dino *From:* Jason Hardman [mailto:jason.hard...@beims.com] *Sent:* Sunday, October 07, 2012 19:29 *To:* Dean Cleaver; James

Re: [MonoTouch] Any ideas what causes this?

2012-10-07 Thread James Darbyshire
Dino, Always happy to test on my devices if you need a hand. Regards, James On 08/10/2012, at 9:50 AM, Dean Cleaver wrote: I’m using the standard Visual Studio calls to the web client – so if I have a method called “Fred” I call “service.Fred()”.I don’t use async, but I do use my own thread

Re: [MonoTouch] Skinning MonoTouch & MT.Dialog

2012-09-25 Thread James Darbyshire
Brilliant! Just what the doc ordered. Thanks Nic. Regards, James On 25/09/2012, at 10:36 PM, Nic Wise wrote: > I've done this. > > :) > > this app is 100% MonoTouch.Dialog: > > http://www.earnestapp.com/ > > http://fastchicken.co.nz/2012/05/20/earnest-debrief-visual-styles-in-ios-apps-uiappear

Re: [MonoTouch] Crash report

2012-09-25 Thread James Darbyshire
Hi Miljenko, I use System.AppDomain.CurrentDomain.UnhandledException all of the time in MT to catch I handled exceptions. I usually attach a logger to this event and log an event in an error log somewhere. Are you having trouble? Regards, James On 25/09/2012, at 6:16 PM, Miljenko Cvjetko wro

Re: [MonoTouch] Setting HighlightedTextColor when UITableViewCellSelectionStyle.None is used

2012-08-20 Thread James Darbyshire
Does this need to be invoked on the UI thread to work? Regards, James On 21/08/2012, at 11:06 AM, Drew Greenwell < dgreenw...@leapfroginteractive.com> wrote: I actually initially thought about that and wrote this code below, but it also seems to have no effect. If I call cell.SetHighlighted(t

Re: [MonoTouch] Enterprise Deployment Question

2012-02-11 Thread James Darbyshire
We do enterprise apps. Apples advice is to get the client to register as an enterprise developer, and then sign the ipa with their certificates for distribution. This makes it easy for us to use a normal apple developers account. We did buy enterprise MT though to support Xamarin. Regards,

Re: [MonoTouch] MonoTouch support / availability of help

2011-11-25 Thread James Darbyshire
Cool. Where are you based? Regards, On 25/11/2011, at 9:04 AM, Alec Tucker wrote: > I'm also keen to make contact with others in Aus. > > Alec > > Sent from my iPad ___ MonoTouch mailing list MonoTouch@lists.ximian.com http://lists.ximian.com/mailm

Re: [MonoTouch] MonoTouch support / availability of help?

2011-11-24 Thread James Darbyshire
Up for a meet up some time Aus. Always good to expand the contact base. Sent from my iPhone On 24/11/2011, at 8:14 PM, Craig Dunn wrote: I'm more than happy to answer questions and discuss MT/M4A - esp with others around Australia (or anywhere really - airfares welcome ;-). email or tweet me @c

Re: [MonoTouch] Status

2011-07-18 Thread James Darbyshire
That's enough for me too! Very happy. :-) I bet there's a few happy people around tonight. Now back to Wally's book... Sent from my iPhone On 18/07/2011, at 10:51 PM, Wally McClure wrote: > I don't know about Nic, but this removes doubt for me. > > > Date: Mon, 18 Jul 2011 13:39:03 +0100 > > S

[MonoTouch] Fwd: IsReference DataContract Attribute

2011-07-14 Thread James Darbyshire
Sent from my iPhone Begin forwarded message: *From:* Wally McClure *Date:* 15 July 2011 12:24:04 AM AEST *To:* *Subject:* *RE: [MonoTouch] IsReference DataContract Attribute* IIRC, the mono wcf client in monotouch/m4a is a straight port, dare I say copy. IsReference just might work, though, I

Re: [MonoTouch] IsReference DataContract Attribute

2011-07-14 Thread James Darbyshire
Hi Steve, Not tried it on mt but I have used it in mono on a server. Had fun and games but I did get it working. Might be easier to try it and report back. James Sent from my iPhone On 14/07/2011, at 12:38 AM, Steve Meagher wrote: > Hi, > > I have a number of existing WCF Services that use D

[MonoTouch] Fwd: Class action lawsuit?

2011-07-13 Thread James Darbyshire
Sent from my iPhone Begin forwarded message: *From:* James Darbyshire *Date:* 13 July 2011 12:34:06 PM AEST *To:* Chris Hamblett *Subject:* *Re: [MonoTouch] Class action lawsuit?* My 2 cents; A lawsuit has no point as Attachmate can just honour their years support and "upgrades" (t

[MonoTouch] ADO DataSets

2011-06-02 Thread James Darbyshire
Do these work fully in MonoTouch? Contemplating getting around a circular reference problem in POCO transfer over ASMX by passing a dataset... James -- Regards, James Darbyshire jamesdarbysh...@gmail.com ___ MonoTouch mailing list MonoTouch

Re: [MonoTouch] Time for action

2011-06-02 Thread James Darbyshire
http://monotouch.2284126.n4.nabble.com/Time-for-action-tp3566783p3569745.h > >tml > >Sent from the MonoTouch mailing list archive at Nabble.com. > >___ > >MonoTouch mailing list > >MonoTouch@lists.ximian.com > >http:

Re: [MonoTouch] Advice

2011-05-24 Thread James Darbyshire
3. learn obj-c > > 4. try partnering with someone who already has a working license - you > could develop using the trial version for development, and then use that > partner's license for deployment and testing > > On Tue, May 24, 2011 at 7:11 PM, James Darbyshire < &

[MonoTouch] Advice

2011-05-24 Thread James Darbyshire
Novell being acquired and the mono team being disbanded. Thanks for your advice. -- Regards, James Darbyshire jamesdarbysh...@gmail.com ___ MonoTouch mailing list MonoTouch@lists.ximian.com http://lists.ximian.com/mailman/listinfo/monotouch