Re: [MonoTouch] Is it possible to go back automatically into the application after calling a Number?

2012-02-14 Thread nader
That sound like a good idé, still its more user-friendly then going into the application by there selfs. As I said before, I am quite new to this. Would be grateful if you had an example of it, or explain a little more about the whole processes. Regards -- View this message in context:

[MonoTouch] Soap headers getting stripped away

2012-02-14 Thread andersa
I have a problem when communicating with a web service (ASP.NET 2.0 asmx). The web service relies on Soap headers to pass some initial authentication data. Without these, the entire session fails. When running my MonoTouch app in the simulator everything works great. The headers are passed from

Re: [MonoTouch] Soap headers getting stripped away

2012-02-14 Thread Rolf Bjarne Kvinge
Hi, Do you have a test case we can try out? Otherwise it'll probably be very hard to figure this out. Thanks, Rolf On Tue, Feb 14, 2012 at 11:39 AM, andersa anders.ag...@larmia.se wrote: I have a problem when communicating with a web service (ASP.NET 2.0 asmx). The web service relies on Soap

Re: [MonoTouch] Soap headers getting stripped away

2012-02-14 Thread andersa
Hi! I'll try to put together a small enough project to prove this. //Anders -- View this message in context: http://monotouch.2284126.n4.nabble.com/Soap-headers-getting-stripped-away-tp4386644p4386881.html Sent from the MonoTouch mailing list archive at Nabble.com.

Re: [MonoTouch] Soap headers getting stripped away

2012-02-14 Thread Sebastien Pouliot
Hello, Please try to use Don't link on the device (it defaults to Link SDK assemblies). You can also try to use Link SDK assemblies on the simulator. If, by changing both, you get the simulator failing and the device working the it's likely a linker issue and we'll need a test case to correct

[MonoTouch] Modal activity indicator?

2012-02-14 Thread MilkyJoe
Is it possible to implement a modal activity indicator? By this, I mean I'd like the entire view to become darker, with user interaction disabled and a single activity indicator spinning in the centre of the screen. I have the activity indicator working with user interaction disabled, but it's

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread nils
You could give https://github.com/detroitpro/MBProgressHUD-MonoTouch a try - works for me very well. If you really want it full screen you can modify the view displaying the activity indicator easily. Nils -- View this message in context:

[MonoTouch] iPhoneOSGameView sample

2012-02-14 Thread Gargamelle
Hi, I created a project using the /iPhoneOSGameView/ template. Is there a code sample (is it possible) using *Vertex Buffer Objects* with /iPhoneOSGameView/? Thank you in advance. Best regards Gargamelle -- View this message in context:

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread Bendikt Hübschen
public class LoadingView : UIAlertView { private UIActivityIndicatorView _activityView; public void Show(string title) { Title = title; _activityView = new

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread MilkyJoe
Perfect! Thanks. -- View this message in context: http://monotouch.2284126.n4.nabble.com/Modal-activity-indicator-tp4387121p4387259.html Sent from the MonoTouch mailing list archive at Nabble.com. ___ MonoTouch mailing list MonoTouch@lists.ximian.com

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread Gerry High
I've used this (monotouch port of MBProgressHUD) https://github.com/detroitpro/MBProgressHUD-MonoTouch On Feb 14, 2012, at 8:14 AM, MilkyJoe wrote: Is it possible to implement a modal activity indicator? By this, I mean I'd like the entire view to become darker, with user interaction

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread MilkyJoe
Would it be wise to add the following code to the Hide method, or is it not require? activityView.RemoveFromSuperview (); activityView = null; I'm trying to get a handle on how best to keep things clena in MonoTouch. Thanks -- View this message in context:

[MonoTouch] How To change a UIImages position randomly?

2012-02-14 Thread nader
I have an UIImage, and I want to give it a Random Position everytime I Click at it. Once you Click at the Image it should pick a random spot and so on. I have tried and failed, so need some help! *myDraggableImage.cs* using System; using MonoTouch.UIKit; using System.Drawing; namespace

[MonoTouch] Pushing Monotouch.Dialog.DialogViewController - No back button

2012-02-14 Thread Felix Collins
Hi, I've got a couple of UITableViewController based views that I push onto a UINavigationController just like the multiscreen tutorial example. That all works fine. I'm trying out Monotouch.Dialog so I created a DialogViewController based view and pushed that onto the

Re: [MonoTouch] Pushing Monotouch.Dialog.DialogViewController - No back button

2012-02-14 Thread Craig Dunn
Felix, DialogViewController ctor has an optional parameter pushing, if you pass true then the back button will show. In my case i subclass DialogViewController, so i've got this - notice the third param in the base() call public ExhibitorsScreen () : base (UITableViewStyle.Plain, null, true) {

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread dermotos
My approach to this was to make a static view that had a PNG with transparency to make the screen a little dimmer, another view added to this with its alpha set to about 0.8f with rounded corners, and a UIActivityIndicator added to this. When ShowView() is called it adds itself to the base

Re: [MonoTouch] RemoveFromSuperview crashing

2012-02-14 Thread dermotos
Two quick things... firstly, (a bit obvious, but) does the view have a superview or is it null? Secondly, are you calling it from the main thread? Try wrapping the RemoveFromSuperView in InvokeOnMainThread(delegate { View.RemoveFromSuperView(); }); When I started i had lots of strange

Re: [MonoTouch] Looking for MT developers in Sydney

2012-02-14 Thread dermotos
Hi, Im a Monotouch developer based in Sydney. I've tried to email you directly but had some problems with the CAPTCHA not being accepted on the email page. Please let me know if you got my email. Regards Dermot -- View this message in context:

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread Alex Soto
I created the MBProgressHUD bindings for monotouch You can download them from here https://github.com/dalexsoto/AlexTouch.MBProgressHUD Just import the DLL and you are good to go :) Alex El 14/02/2012, a las 08:14 a.m., MilkyJoe leigh.bow...@curvenet.co.uk escribió: Is it possible to

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread Gerry High
Alex, I sent this out earlier today to the list about an existing port to Monotouch--not sure how yours is different. https://github.com/detroitpro/MBProgressHUD-MonoTouch Gerry On Feb 14, 2012, at 6:32 PM, Alex Soto wrote: I created the MBProgressHUD bindings for monotouch You can

Re: [MonoTouch] Modal activity indicator?

2012-02-14 Thread Alex Soto
oh, sorry didn't see it, well that one [2] its a port from ObjC to C#, mine its a binding from the ObjC library i mean MonoTouch its consuming a static library created from the original ObjC source code [1] compiled in xcode, you can find more info about bindings here [3] [4] [5] [6] Which one