[MonoTouch] How can restrict it perform Zoom/out + Pan operation inside only the UIScrollView

2012-11-22 Thread pritish
Actual scenario to display image is UIScrollView => UIImageView => UIImage

While performing Zoom/In and Zoom/Out operation on the UIImage after
applying Zoom/In operation same time i am trying to apply the pan effect on
Image it works well but  while at Zoom/Out and apply pan on it image get pan
but the it hides below the UIScrollView(i.e. goes out of scope) then I am
trying to panning to display the image its not get back to perform panning
operation.

So how I can restrict it perform Zoom/out + Pan operation inside only the
UIScrollView.

Regards
Pritish
 
  
   



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-can-restrict-it-perform-Zoom-out-Pan-operation-inside-only-the-UIScrollView-tp4657705.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to Convert UIView To UIScrollView

2012-11-21 Thread pritish
I want to Convert UIView to UIScrollView how it can possible?



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Convert-UIView-To-UIScrollView-tp4657700.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Big Endian and Little Endian Problem in IOS

2012-11-05 Thread pritish
For This I implement RLE Compression , for both MonoAndroid and Monotouch but
image quality is not incremented is as it.



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Big-Endian-and-Little-Endian-Problem-in-IOS-tp4657614p4657623.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Big Endian and Little Endian Problem in IOS

2012-11-05 Thread pritish
Hi to All,

Now I am facing some error In Image Quality in IOS. I think that error
arises due to Big Endian and Little Endian. I am implemented code first for
mono-Android for windows OS. Now I am trying to use some class Lib into my
Monotouch code. Same Image I wanted to display on Android Device is display
correctly but same image on iPad it decreases the image quality 

So, suggest me solution over it

Pritish Deshmukh 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Big-Endian-and-Little-Endian-Problem-in-IOS-tp4657614.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Display UIActiviIndicatorView still Image completely downloaded and display on UIImageView

2012-09-17 Thread pritish
Hi To All,

 I am trying to download 5MB Image from Server for this I want to display
UIActiviIndicatorView still Image completely downloaded and display on
UIImageView, so how can display Activity Indicator up to image is loaded
into ImageView 

Regards
Pritish M. Deshmukh 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Display-UIActiviIndicatorView-still-Image-completely-downloaded-and-display-on-UIImageView-tp4657055.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] UIImageView not hide by Splash Screen

2012-08-30 Thread pritish
Hi ,

 I added UIImageView few UIButton and TextBox to my iPad app. now I want to
add the splash screen to the whole UIView. In this scenario I add the Button
, TextBox  dynamically and UIImageView I used as Control means I drag n drop
it to UIView.

while launching the app the Button and TextBox are hide by splash screen but
UIImageView is show above the splash screen 

for that I tried this code 

public override void ViewDidLoad ()
{
//SetTextViewInfo (PresentImage);
base.ViewDidLoad ();
// Perform any additional setup after loading the view, 
typically from a
nib.

#region Splash Screen
// get the Height & Width of device Screen
float mainSrcWidth = this.View.Bounds.Width; 
float mainSrcHeight = this.View.Bounds.Height;
splashScreen = new UIImageView (UIImage.FromFile
("Images/load1536_2008.png"));
splashScreen.Frame = new RectangleF (0, 0, 
mainSrcWidth, mainSrcHeight);

//Start the thread;
ThreadPool.QueueUserWorkItem (delegate {
Load ();
}
);
this.Add (btnReset);
this.Add (btnExit);
this.Add (txtviewPatientInfo);
   
this.Add (ImgView);
this.View.AddSubview (splashScreen);
}

#region Load() splashscreen
private void Load ()
{
//Sleep for 5 seconds to simulate a long load.

Thread.Sleep (new TimeSpan (0, 0, 0, 5));
this.BeginInvokeOnMainThread (delegate {
splashScreen.RemoveFromSuperview ();
splashScreen = null;
}
);
}
#endregion



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIImageView-not-hide-by-Splash-Screen-tp4656778.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Problem while performing dual operation on UIImageView

2012-08-16 Thread pritish
Yes but first I'll tell you what exact the problem When I Zoom In or Zoom Out
the image the at the same time I want to rotate (+-90 deg) or Flip or
Reverse the Image at exact zoom In or Zoom Out Position but that time Image
get reset then perform the respective operation such rotate, flip ,reverse I
wanted to do it simultaneously on UIImage
 
if (btnNames == "Rotate R")
{   

Angle = deg + 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;

} else
{
Angle = deg - 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;
}

reverse
CGAffineTransform transform = CGAffineTransform.MakeScale (-1, 1);
imgView.Transform = transform;
return  true;

if (flips == false)
{
CGAffineTransform transform = 
CGAffineTransform.MakeScale (1, -1);
imgView.Transform = transform;
return  true;
} 
this code i implemented it works fine individually perform to operation. but
You Now you what I want to 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544p4656546.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Problem while performing dual operation on UIImageView

2012-08-16 Thread pritish
Hi To All,

 This time I am facing problem while performing dual operation on
UIImageView means

1) Zoom+Flip the Image
2)Zoom + Reverse the Image 
3)Zoom + Flip or Reverse + Rotate(+- 90)deg

so please help to find out the solution of this problem.




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Problem-while-performing-dual-operation-on-UIImageView-tp4656544.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Which type of parameter pass to CGImage for rendering Image properly into UIImageView

2012-08-08 Thread pritish
Hi To All,

 I have one issue regarding UIImageView and UIImage I get confuse on
1 thing ie My *" UIImageView Height = 759 and Width = 748"* and I am
downloading the images from server that Height and width is so so greater
Such as *"Image Height = 2048 and Width = 2500"*

so I am little bit confuse while rendering the image on UIImageView what I
pass the parameter into CGImage 

I am passing the parameter to the CGImage as below

CGImage _bitmap = new CGImage (2048 , 2500 , 8 , 32 , 2048 * 4 , _colorSpace
, CGBitmapFlag.ByteOrderDefault , null, true ,
CGColorRenderingIntent.Default);

which type  of parameter I pass in CGImage() means I pass Image parameter or
UIImageView parameter to CGImage so that my Image will render properly into
UIImaeView

Pritish



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Which-type-of-parameter-pass-to-CGImage-for-rendering-Image-properly-into-UIImageView-tp4656440.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to display 12 bit images in UIImageView

2012-08-08 Thread pritish
Sorry Nic Your solution I tried but it is not working it gives me O/P



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-display-12-bit-images-in-UIImageView-tp4656427p4656435.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to display 12 bit images in UIImageView

2012-08-08 Thread pritish
Ya It http://monotouch.2284126.n4.nabble.com/file/n4656433/B%26W.png s an B&W
Image



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-display-12-bit-images-in-UIImageView-tp4656427p4656433.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to display 12 bit images in UIImageView

2012-08-08 Thread pritish
Hi to All,

  From few days I am struggling to display 12 bit images in UIImageView
images are displayed but "Not Properly" I show you image screenshot how it
render on UIImageView 
http://monotouch.2284126.n4.nabble.com/file/n4656427/brain.jpg 
http://monotouch.2284126.n4.nabble.com/file/n4656427/chest.png 

this is the out put i get from my code as below 

const int bytesPerPixel = 4;
int _width = (int)_drawArg.RectUIImageMatrix.Width;
int _height = (int)_drawArg.RectUIImageMatrix.Height;
CGImage _bitmap ;

Rectangle srcRectangle = new Rectangle(0, 0, imageGraphic.Columns,
imageGraphic.Rows);
Rectangle rect = Rectangle.Round(new RectangleF(0,0,_width , _height));
Rectangle dstRectangle = rect;

int[] srcPixels = new int[image.Columns * image.Rows *
image.PixelData.BytesPerPixel];

int bitsPerComponent = 8;
int bytesPerRow = srcRectangle.Width * bytesPerPixel  *2;
var  pixelBytes = imageGraphic.PixelData.Raw;
CGColorSpace _color = CGColorSpace.CreateDeviceRGB();
CGDataProvider _provide = new CGDataProvider(pixelBytes ,
0,pixelBytes.Length);

_bitmap = new CGImage(srcRectangle.Width,srcRectangle.Height
,bitsPerComponent,32,bytesPerRow , _color , CGBitmapFlags.ByteOrder16Big |
CGBitmapFlags.PremultipliedLast ,_provide ,null ,true
,CGColorRenderingIntent.Default);


ImgView.Image = UIImage.FromImage(_bitmap);


So please help me ! Its Very Urgent for Me 

Regards
Pritish M. Deshmukh




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-display-12-bit-images-in-UIImageView-tp4656427.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Unable to Display Image on UIImageView

2012-07-25 Thread pritish

Hi Friends,
 
 Thanks to All for urs valuable reply to me for my previous posts

This time I am also in trouble regarding the display image on
UIImageView My problem is that I am trying to download the Images from
server and display it to UIImageView, downloading works fine but problem is
displaying image on UIImageView.

My UIImageView Size is  Height=759 and Width = 748
also Image Size is  Height=256 and Width = 256

UIImageView is inside the UIScrollView has same height & width with x
co-ordinate=10 
and y co-ordinate = 171

I didn't understand what goes wrong to display image on UIImageView , for
this I try ed to use things such as ScaleAspectFit etc
Regards
Pritish M. Deshmukh




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Unable-to-Display-Image-on-UIImageView-tp4656160.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] how to solve this Error "Got a SIGSEGV while executing native code"

2012-07-18 Thread pritish
How to solve this error

=
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries 
used by your application.
=


Application Terminated

Regards
Pritish M Deshmukh



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/how-to-solve-this-Error-Got-a-SIGSEGV-while-executing-native-code-tp4656057.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] I done zooming on Gesture Recognizer While same I want to perform Rotate Operation with UIButton click Event

2012-07-09 Thread pritish
Hi, 

I am trying to apply the Pinch Gesture Recognizer to UIImage while the same
time means the zoom in or zoom out the image that time I want to rotate it
with 90 deg with that zooming level but my problem is that , 
while applying rotate operation with zoom only rotate the image with its
original scale. 

 I want perform both Zoom and Rotate operations simultaneously.
for rotate image i use the buttons to rotate image for zoom i use
PinchGestureRecognizor 

 code for PinchGestureRecognizor 

void ScaleImage (UIPinchGestureRecognizer gestureRecognizer) 
{ 
AdjustAnchorPointForGestureRecognizer
(gestureRecognizer); 
if (gestureRecognizer.State ==
UIGestureRecognizerState.Began || gestureRecognizer.State ==
UIGestureRecognizerState.Changed) { 
gestureRecognizer.View.Transform *=
CGAffineTransform.MakeScale (gestureRecognizer.Scale,
gestureRecognizer.Scale); 
// Reset the gesture recognizer's scale -
the next callback will get a delta from the current scale. 
gestureRecognizer.Scale = 1f;   
imageForReset = gestureRecognizer.View; 
} 
} 


 For Button Rotate

public float OnRotateClick (UIImageView imgview, float deg, string 
btnNames, out float _wdth, out float _hgt) 
{   
_wdth = imgview.Frame.Width; 
_hgt = imgview.Frame.Height; 
SizeF _imgFrameSize = new SizeF (Width, Height); 
imgview.Frame.Size = _imgFrameSize; 
if (btnNames == "Rotate R") 
{   

Angle = deg + 90; 
imgview.Transform =
CGAffineTransform.MakeRotation (Angle * (float)Math.PI / 180); 
return Angle; 

}  else 
{ 
Angle = deg - 90; 
imgview.Transform =
CGAffineTransform.MakeRotation (Angle * (float)Math.PI / 180); 
return Angle; 
} 
} 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/I-done-zooming-on-Gesture-Recognizer-While-same-I-want-to-perform-Rotate-Operation-with-UIButton-clit-tp4655881.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] I want perform both Zoom and Rotate operations simultaneously

2012-07-08 Thread pritish

Really-Really Sorry rnendel11

It just my mistake I paste wrong code snippet for *For Button Rotate* in my
previous post so sorry 

the code for rotate on button click event is 

public float OnRotateClick (UIImageView imgview, float deg, string 
btnNames, out float _wdth, out float _hgt)
{   
_wdth = imgview.Frame.Width;
_hgt = imgview.Frame.Height;
SizeF _imgFrameSize = new SizeF (Width, Height);
imgview.Frame.Size = _imgFrameSize;
if (btnNames == "Rotate R")
{   

Angle = deg + 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;

}  else
{
Angle = deg - 90;
imgview.Transform = 
CGAffineTransform.MakeRotation (Angle *
(float)Math.PI / 180);
return Angle;
}
}

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/I-want-perform-both-Zoom-and-Rotate-operations-simultaneously-tp4655829p4655863.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] I want perform both Zoom and Rotate operations simultaneously

2012-07-07 Thread pritish
Hi,

I am trying to apply the Pinch Gesture Recognizer to UIImage while the same
time means the zoom in or zoom out the image that time I want to rotate it
with 90 deg with that zooming level but my problem is that ,
while applying rotate operation with zoom only rotate the image with its
original scale.

 I want perform both Zoom and Rotate operations simultaneously.
for rotate image i use the buttons to rotate image for zoom i use
PinchGestureRecognizor 

 code for PinchGestureRecognizor 

void ScaleImage (UIPinchGestureRecognizer gestureRecognizer)
{
AdjustAnchorPointForGestureRecognizer 
(gestureRecognizer);
if (gestureRecognizer.State == 
UIGestureRecognizerState.Began ||
gestureRecognizer.State == UIGestureRecognizerState.Changed) {  

gestureRecognizer.View.Transform *= 
CGAffineTransform.MakeScale
(gestureRecognizer.Scale, gestureRecognizer.Scale);
// Reset the gesture recognizer's scale - the 
next callback will get a
delta from the current scale.
gestureRecognizer.Scale = 1f;   
imageForReset = gestureRecognizer.View;
}
}


 For Button Rotate

void ScaleImage (UIPinchGestureRecognizer gestureRecognizer)
{
AdjustAnchorPointForGestureRecognizer 
(gestureRecognizer);
if (gestureRecognizer.State == 
UIGestureRecognizerState.Began ||
gestureRecognizer.State == UIGestureRecognizerState.Changed) {  

gestureRecognizer.View.Transform *= 
CGAffineTransform.MakeScale
(gestureRecognizer.Scale, gestureRecognizer.Scale);
// Reset the gesture recognizer's scale - the 
next callback will get a
delta from the current scale.
gestureRecognizer.Scale = 1f;   
imageForReset = gestureRecognizer.View;
}
}




--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/I-want-perform-both-Zoom-and-Rotate-operations-simultaneously-tp4655829.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to apply LUT to CGImage or UIImage in IOS

2012-06-30 Thread pritish
Yes!! its  Look Up Table

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-apply-LUT-to-CGImage-or-UIImage-in-IOS-tp4655655p4655679.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Trying to upload my first app to the AppStore! Getting code signing errors :(

2012-06-29 Thread pritish
hope so this link will help to solve your problem 
http://lostechies.com/marcusbratton/2010/08/13/getting-started-with-monotouch/
http://lostechies.com/marcusbratton/2010/08/13/getting-started-with-monotouch/ 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Trying-to-upload-my-first-app-to-the-AppStore-Getting-code-signing-errors-tp4655258p4655656.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to apply LUT to CGImage or UIImage in IOS

2012-06-29 Thread pritish
>From few days I am searching for applying LUT to CGImage but I didn't get
anything so please help me how to apply lut over cgimage or uiimage

Pritish M.Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-apply-LUT-to-CGImage-or-UIImage-in-IOS-tp4655655.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How I can convert NSData to CIImage in monotouch

2012-06-12 Thread pritish
actually I got byte array of data from RLE  uncompressed data How I can
convert it to IOS supported image format.

var image = CIImage.FromData(NSData.FromArray(data));  // data is RLE 
uncompressed byte array

 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-I-can-convert-NSData-to-CIImage-in-monotouch-tp4655308p4655318.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How I can convert NSData to CIImage in monotouch

2012-06-12 Thread pritish
Monbodevelop 3.0 and MonoTouch 5.2.11

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-I-can-convert-NSData-to-CIImage-in-monotouch-tp4655308p4655314.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How I can convert NSData to CIImage in monotouch

2012-06-12 Thread pritish
It gives an error as Unknown member 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-I-can-convert-NSData-to-CIImage-in-monotouch-tp4655308p4655310.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How I can convert NSData to CIImage in monotouch

2012-06-12 Thread pritish
How I can convert NSData to CIImage in monotouch

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-I-can-convert-NSData-to-CIImage-in-monotouch-tp4655308.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Error this UIImage.LoadFromData(_data); returns null

2012-06-11 Thread pritish
can you provide some demo example over it.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Error-this-UIImage-LoadFromData-data-returns-null-tp4655276p4655296.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Error this UIImage.LoadFromData(_data); returns null

2012-06-11 Thread pritish
Its RLE compress image data. i dont know how it can be set to UIImage.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Error-this-UIImage-LoadFromData-data-returns-null-tp4655276p4655293.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] Byte array shows value but the ImgView.Image shows null

2012-06-09 Thread pritish
Byte array get the RLE Compress data. so the UIImage>LoadFromData(_data) give
me an null refernce exception

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Byte-array-shows-value-but-the-ImgView-Image-shows-null-tp4655273p4655281.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Error this UIImage.LoadFromData(_data); returns null

2012-06-09 Thread pritish

NSData _data = NSData.FromArray(_imgData); // _imgData is byte array with
length 1310450
ImgView.Image = UIImage.LoadFromData(_data);  Error

* UIImage.LoadFromData(_data); shows an null it gives an Null Reference
Exception**
while returning value to ImgView.Image.*

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Error-this-UIImage-LoadFromData-data-returns-null-tp4655276.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Byte array shows value but the ImgView.Image shows null

2012-06-09 Thread pritish
I am trying to display image into uiimageview from this method
NSData.FromArray() but it gives an null reference exception my code is 
Byte _imgData = GetRawData(_imgPath);  // this method get the byte array of
size ([131072])
NSData _data = NSData.FromArray(_imgData);
ImgView.Image = UIImage.LoadFromData(_data) 

in this _data shows the byte array value but the ImgView.Image shows null 

so it gives an error to me so what i try ed to solve this issue .


  

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Byte-array-shows-value-but-the-ImgView-Image-shows-null-tp4655273.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to display the Previous n Next UIButton on UIImageView when finger will touch to UIImage or UIImageView

2012-06-05 Thread pritish
Hi, 

 I want to display the Previous n Next UIButton on UIImageView when finger
will touch to UIImage or UIImageView for iPad app(just similar like Facebook
but its not an web app). 
I didnt know how to do this please help me!


--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-display-the-Previous-n-Next-UIButton-on-UIImageView-when-finger-will-touch-to-UIImage-or-UIImw-tp4655212.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Image goes out of scope from UIScrollView I just want to pan Image only inside the UIScrollView

2012-06-01 Thread pritish
Hi ,

I am displaying image into UIImageView which under the UIScrollView
 (ie UIScrollView-->UIImageVIew-->UIImage) I am applying various Gesture
Recognizer on it, but I am facing the problem while using the
UIPanGestureRecognizer such as,
   
  my scenario is while applying the PAN Gesture Recognizer on
UIImageView image pan operation perform properly but when I pan the image
out of the scroll view it will not back to display to user while user doing
backward pan means scrolling back operation not perform 

Image goes out of scope from UIScrollView I just want to pan Image only
inside the UIScrollView

Regards
Pritish M. Deshmukh
   

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Image-goes-out-of-scope-from-UIScrollView-I-just-want-to-pan-Image-only-inside-the-UIScrollView-tp4655159.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to Zoom UIImage in specific area without disturbing other Objects

2012-05-14 Thread pritish
While zooming the Image it goes over buttons but while zooming it zoom in
specific region not on the UIButton

I am trying everything such as I place UIImage inside UIScrollView but its
not work ,so please help me for this 

problem  please check image that I attach with this 
http://monotouch.2284126.n4.nabble.com/file/n4633971/iOS_Simulator.png 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Zoom-UIImage-in-specific-area-without-disturbing-other-Objects-tp4633971.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] UIButton not work when Zooming the UIImageView

2012-05-09 Thread Pritish
I am displaying image to UIImageView also app contains some UIButton when
image loaded all 

button work fine means all button operation perform on UIImage is
successfully but when I 

Zooming the image for certain extent the button didnt work.

My question is that how I can zoom the image only just below the button not
over it.

please find the attachment of image so you can get more idea


http://monotouch.2284126.n4.nabble.com/file/n4619703/iOS_Simulator_Screen_shot_09-May-2012_1.38.26_PM.png
 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIButton-not-work-when-Zooming-the-UIImageView-tp4619703.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to Deploy App it to iPad only not to the App Store

2012-05-06 Thread Pritish
   
 I developed my App I want to deploy it to iPad only not to the app
store. I perches Monotouch Licence version but while deploying it gives me
an error  No valid iphone code signing keys found keychain monotouch so
please tell me solution which developer certificate i need to perches from
apple developer program so that I can deploy my app to only iPad not to app
store 

Regards
Pritish M. Deshmukh


--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Deploy-App-it-to-iPad-only-not-to-the-App-Store-tp4614115.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] No valid iphone code signing keys found keychain monotouch

2012-05-04 Thread Pritish
I got this Error Message

*No valid iphone code signing keys found keychain monotouch*

How I can resolve this error

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/No-valid-iphone-code-signing-keys-found-keychain-monotouch-tp4608669.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] update my Evaluation Version to Licence Version

2012-05-04 Thread Pritish
  
   I developed my app in monotouch Evaluation version. now I perches the
Licence Version but I don't know how update my Evaluation Version to Licence
Version  

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/update-my-Evaluation-Version-to-Licence-Version-tp4608356.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] what i do images get download with this method HandleOpenUrl()

2012-04-24 Thread Pritish
  
  How to Launch the app from Hyperlink also while Launching the app the
images get downloaded into the local 

folder.
   
   1) Launch the app from Hyperlink :- I used the Custom URL my app is
launch successfully with overloaded *method HandleOpenUrl()*.

   2) but problem is that my dicom directory of images didnt  downloaded
into my app folder.

what i do images get download with this *method HandleOpenUrl().* also how
to get this folder path to 

read the list of images and display it in to the UIImageView.

Regards
Pritish M. Deshmukh


--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/what-i-do-images-get-download-with-this-method-HandleOpenUrl-tp4580403p4580403.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] I added the .resx file in monotouch but gives an error

2012-04-24 Thread Pritish
 I am added the .resx file in my monotouch project but it gives me an error I
didnt get how to resolved this :

*
{System.Resources.MissingManifestResourceException: Could not find any
resources appropriate for the specified culture or the neutral culture. 
Make sure "Medsynaptic.SR.resources" was correctly embedded or linked into
assembly "MdLIC" at compile time, or that all the satellite assemblies
required are loadable and fully signed.   at
System.Resources.ResourceManager.AssemblyResourceMissing (System.String
fileName) [0x0004d] in
/Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Resources/ResourceManager.cs:505
   
at System.Resources.ResourceManager.InternalGetResourceSet
(System.Globalization.CultureInfo culture, Boolean createIfNotExists,
Boolean tryParents) [0x00186] in
/Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Resources/ResourceManager.cs:398
   
at System.Resources.ResourceManager.InternalGetResourceSet
(System.Globalization.CultureInfo culture, Boolean createIfNotExists,
Boolean tryParents) [0x00253] in
/Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Resources/ResourceManager.cs:427
   
at System.Resources.ResourceManager.InternalGetResourceSet
(System.Globalization.CultureInfo culture, Boolean createIfNotExists,
Boolean tryParents) [0x00253] in
/Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Resources/ResourceManager.cs:427
   
at System.Resources.ResourceManager.GetString (System.String name,
System.Globalization.CultureInfo culture) [0x0002e] in
/Developer/MonoTouch/Source/mono/mcs/class/corlib/System.Resources/ResourceManager.cs:252
   
at Medsynaptic.SR.get_Separator () [0x0] in /Developer/IOS Dicom
Viewer/DicomViewerApplication/MdLIC/SR.Designer.cs:131at
Medsynaptic.Dicom.Security.Encryption.GetString[Int64] (Int64 key, Int64
val) [0x0] in /Developer/IOS Dicom
Viewer/DicomViewerApplication/MdLIC/Encryption.cs:41at
Medsynaptic.Dicom.Security.Encryption.Encrypt (Int64 key, Int64 val)
[0x0] in /Developer/IOS Dicom
Viewer/DicomViewerApplication/MdLIC/Encryption.cs:36at
Medsynaptic.Dicom.Security.Security.UnlockSupport_mdDir (Int64 key, Int64
val) [0xc] in /Developer/IOS Dicom
Viewer/DicomViewerApplication/MdLIC/License.cs:265 }
*

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/I-added-the-resx-file-in-monotouch-but-gives-an-error-tp4579528p4579528.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Where I Stored Downloaded images into iPad

2012-04-19 Thread Pritish
Hi,
  
   I want download IMAGES from URL and save it to IMAGE FOLDER or any iPad
pictures or photo folder.

after performing download it can be displayed into UIImageView.* But my
problem is I didn't know how to downloaded images are stored to iPad folder
which Destination Path I can set to for iPad Image Folder .*

also how to get image from this path
my code is

public override void HandleOpenURL (UIApplication application, NSUrl
url)
{
   HttpDownloader _objHttpDwnloader = new
HttpDownloader();
if (url != null)

{
Implementation.Scheme = url.Scheme; 
string urlHttp = Implementation.Scheme.Replace 
(url.Scheme, "http://";);
Implementation.Host = url.Host; 

Implementation.BaseServerDirectory = 
string.Empty;  
UrlPath = urlHttp + Implementation.Host + 
url.RelativePath; 
string dPath = Path.GetFileName 
(url.RelativePath);
string destPath = Path.Combine
(Environment.GetFolderPath)(Environment.SpecialFolder.Personal),
@"Library/Caches/Pictures/");

//string destPath = @"/Developer/IOS Dicom
Viewer/DicomViewerApplication/DicomViewerApplication/Images";

_objHttpDwnloader.Download (UrlPath, destPath);
}

what is wrong with my code my download logic that i implement is correct but
I confuse about the destination path.
 
Regards
Pritish M. Deshmukh 
   
  

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Where-I-Stored-Downloaded-images-into-iPad-tp4569982p4569982.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to apply the debugger while launch app from browser

2012-04-16 Thread Pritish
Thanks for Your Valuable Help !



From: dermotos [via MonoTouch] 
Sent: Sunday, April 15, 2012 10:13 AM
To: Pritish 
Subject: Re: How to apply the debugger while launch app from browser

Have you tried running it as normal in the with the debugger, then sending it 
to the background, switching to safari and launching it from a link? 

-- 
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-apply-the-debugger-while-launch-app-from-browser-tp4557212p4558576.html
Sent from the MonoTouch mailing list archive at Nabble.com. 
___ 
MonoTouch mailing list 
[hidden email] 
http://lists.ximian.com/mailman/listinfo/monotouch





If you reply to this email, your message will be added to the discussion below:
http://monotouch.2284126.n4.nabble.com/How-to-apply-the-debugger-while-launch-app-from-browser-tp4557212p4558577.html
 
To unsubscribe from How to apply the debugger while launch app from browser, 
click here.
NAML

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-apply-the-debugger-while-launch-app-from-browser-tp4557212p4560864.html
Sent from the MonoTouch mailing list archive at Nabble.com.___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to apply the debugger while launch app from browser

2012-04-15 Thread Pritish
Hi,
  
   Now I am facing new problem, such as I developed my iPad App now I want
to launch it from browser(Safari) for this I added URL Scheme into
Info.PList file while launching the app from this scheme the app is launch
successfully. 

But How to apply the debugger while launch app from browser , also
which method I override to check for the scheme is correct.
  
And with this scheme I have to pass some parameter of image that can
be download from server so tel me how handle this parameter.

Regards
Pritish M. Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-apply-the-debugger-while-launch-app-from-browser-tp4557212p4557212.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] UIButton Problem!!!!

2012-04-13 Thread Pritish
Thanks Nic for the Help

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIButton-Problem-tp4550977p4554050.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to Zoom the Specific part of UIImage to the certain limit.

2012-04-12 Thread Pritish
Hi,
  
   How to Zoom the Specific part of UIImage to the certain limit.

  1. Zoom with UIPinchGestureRecognizer to the certain limit.

  2. Zoom with on UIButton Click it also the some certain limit

Regards
Pritish M. Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Zoom-the-Specific-part-of-UIImage-to-the-certain-limit-tp4551977p4551977.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] UIButton Problem!!!!

2012-04-12 Thread Pritish
Hi ,

  I have added some UIButton into .xib file and some UIButton with the code.
but now I am facing one problem is that while Zooming the UIImageView the
UIButton those are added through code are show on the UIImageView and those
are added with .xib file are below the UIImageView.

this is code i added for UIButton with the code
btnBrightness = UIButton.FromType (UIButtonType.RoundedRect);
btnBrightness.Frame = new RectangleF (540, 20, 95, 37);
btnBrightness.SetTitle ("Brightness", UIControlState.Normal);

  I added the screen shorts of the o/p hope you can
understand very well.

http://monotouch.2284126.n4.nabble.com/file/n4550977/Orignal.jpg 

http://monotouch.2284126.n4.nabble.com/file/n4550977/Error.jpg 

Regards
Pritish M. Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIButton-Problem-tp4550977p4550977.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to add the Magnify Control to the UIImage

2012-04-10 Thread Pritish
Thanks for Help Nic

 I go through the steps that are you told me.

Really Thanks 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-add-the-Magnify-Control-to-the-UIImage-tp4542418p4544915.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] How to add the Magnify Control to the UIImage

2012-04-10 Thread Pritish
My Dear Friend Jason,
 
please go though the below link you will get an idea about Zoom and Magnify.
 
http://www.highwaystech.com/index.php/source-code/ios/367-ios-magnifyingglass-for-ios.html
 
 
Regards
Pritish Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-add-the-Magnify-Control-to-the-UIImage-tp4542418p4544690.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to add the Magnify Control to the UIImage

2012-04-09 Thread Pritish
Hi,
  
I want to Magnify some part of the Image with Magnify Control How I can
implement this.
   How to add the Magnify Control to the UIImage while click the Magnify
UIButton.


Regards
Pritish M. Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-add-the-Magnify-Control-to-the-UIImage-tp4542418p4542418.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Error with Namespace System.Drawing.Color

2012-04-09 Thread Pritish
Hi ,

 How to use the* System.Drawing.Color *namespace in Monotouch.

while I add the above namespace into Monodevelop it gives me an error
*namespace color does not exist in the namespace System.Drawing*

but i check it on to IOS API (Mono Documentation page) System.Drawing.Color
is available.
please check the link
  http://iosapi.xamarin.com/?link=T%3aSystem.ValueType%2f*
System.Drawing.Color  

Regards
Pritish M. Deshmukh



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Error-with-Namespace-System-Drawing-Color-tp4537395p4537395.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Perform Window Leveling Operation on UIImage in Monotouch

2012-04-04 Thread Pritish
Hi,
  
  How to perform window leveling operation on image in monotouch (means:*
while pressing the mouse button and move it to Left to Right Brightness of
Image get increases vice versa also mouse move from Top to Bottom the
Contrast of Image Increases or decreases.*)

Regards
Pritish M. Deshmukh



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Perform-Window-Leveling-Operation-on-UIImage-in-Monotouch-tp4531240p4531240.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Rotate UIImage with 90 degree in UIImageView

2012-03-31 Thread Pritish
Hi

How to Rotate UIImage with 90 deg while click on each rotate button(Rotate
Right , Rotate Left) in UIImageView to:

1. Right Side(with 90 + degree) when to click to RotateRight Button.

2. Left Side(with 90 - degree) when to click to RotateLeft Button.

on every click it rotate to - 90 + degree

Regards
Pritish M Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Rotate-UIImage-with-90-degree-in-UIImageView-tp4521202p4521202.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Rotate UIImage in UIImageView

2012-03-30 Thread Pritish
Hi,

 How to Rotate UIImage in UIImageView to :-

   *1* Right Side when to click to RotateRight
Button.
   *2* Left Side when to click to RotateLeft Button.

Regards
Pritish M. Deshmukh



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Rotate-UIImage-in-UIImageView-tp4518991p4518991.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] how to UISlider use to implement brightness contrast , saturation

2012-03-30 Thread Pritish
Hi ,

How to handle the brightness , contrast and saturation of image on UISlider.

Regards
Pritish Deshmukh 

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/how-to-UISlider-use-to-implement-brightness-contrast-saturation-tp4518116p4518116.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to handle the brightness, contrast, saturation for an UIImage.

2012-03-28 Thread Pritish
Hi,
How to handle the brightness,contrast,saturation for an UIImage.
Regards
Pritish Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-handle-the-brightness-contrast-saturation-for-an-UIImage-tp4511466p4511466.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] While click on UIButton Reset Application is Closed

2012-03-27 Thread Pritish
Hi,
  In my Monotouch application having the UIImageview to display the dicom
images also one Reset Button.
I use various UIGestureRecognizer on it while applying the Pinch or Rotate
or any 1 of these UIGestureRecognizer it perform the operation very well.
But while click on the *Reset Button* image get reset and application at the
same instance get is closed. 
 I don't want to close the application while click on Reset Button

my code is
*
override void ViewDidLoad()
{
this.BtnReset.TouchDown += ResetHandler;
}
void ResetHandler (object sender, EventArgs e)
{
ImgView.Transform = CGAffineTransform.MakeIdentity ();
}*

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/While-click-on-UIButton-Reset-Application-is-Closed-tp4508231p4508231.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] UIALogger

2012-03-12 Thread Pritish
Hi

what i use for alternative for UIALogger Class in monotouch?
for to show error,warning , fail and for messages. 



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UIALogger-tp4465338p4465338.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Is Xcode 4.1 comes with the iOS 5 SDK.

2012-02-27 Thread Pritish
Hi,
 
 xcode4.1 contains which ios sdk version? also how i can configure ios5 sdk
it with xcode4.1
  Xcode 4.1 comes with the iOS 5 SDK.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Is-Xcode-4-1-comes-with-the-iOS-5-SDK-tp4424482p4424482.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] Error!!!!what is meaning of xcode_4.1_for_Lion.dgm not recognized

2012-02-25 Thread Pritish
Hi,

Error
 what is meaning of xcode_4.1_for_Lion.dgm not recognized?

xcode 4.1 installation on mac Lion OS 10.7.1 but it give an error.
is any thing is wrong my Lion mac is install on VMWare.so that it give an
error 
so please tell me solution
Regards
Pritish M.Deshmukh



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Error-what-is-meaning-of-xcode-4-1-for-Lion-dgm-not-recognized-tp4419581p4419581.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


Re: [MonoTouch] URGENT!!!!!!! Which is the suitable version of x-code for the Mac OS 10.7.1 (“Lion”)

2012-02-24 Thread Pritish
Hi Hairy ,

  Ya you are right the link gives the X-Code 4.3 but this version is not run
on MAC Lion 10.7.1

Pritish


--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/URGENT-Which-is-the-suitable-version-of-x-code-for-the-Mac-OS-10-7-1-Lion-tp4416842p4417039.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] URGENT!!!!!!! Which is the suitable version of x-code for the Mac OS 10.7.1 (“Lion”)

2012-02-24 Thread Pritish

 Hi ,

   From few days i am facing the installation problem on * Mac OS 10.7.1
(“Lion”)*.
regarding the x-Code. on my mac i am trying to install x-code 4.3 but it
give an error while installation.
your MAC OS is not support this x-code version.

 so please help me which is the suitable version of x-code for the  * Mac OS
10.7.1 (“Lion”)*.

Regards
Pritish M. Deshmukh

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/URGENT-Which-is-the-suitable-version-of-x-code-for-the-Mac-OS-10-7-1-Lion-tp4416842p4416842.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] why we use XCode instead of Monotouch in @mac

2012-02-17 Thread Pritish

  Hi,

  In development of iPhone/iPad application on MAC in C# there is the
monotouch  for development of the application then why the need of xcode 4
for the development? 

Regards
Pritish

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/why-we-use-XCode-instead-of-Monotouch-in-mac-tp4396561p4396561.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] display image one by one in from specific folder.

2012-02-16 Thread Pritish

  Hi,
   
 I want to read the list of all images (for eg. if we take 10 images)
one by one from the specific folder in my iPhone device.
 after click on Next(>>) or Previous(<<) button images get display one by
one.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/display-image-one-by-one-in-from-specific-folder-tp4393433p4393433.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch


[MonoTouch] How to Create iPhone and iPad apps with C# and .NET in Windows XP.

2012-02-08 Thread Pritish
 Hi, 

   I am new to this technology I want to run the IOS MonoTouch on my windows
XP sp 2.
Is it posible or not? if not the give me full guide line to installation
about the IOS MonoTouch.
 
please help me for this in *more details.*

Regards
Pritish


--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Create-iPhone-and-iPad-apps-with-C-and-NET-in-Windows-XP-tp4369453p4369453.html
Sent from the MonoTouch mailing list archive at Nabble.com.
___
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch