[mono-android] deployment error

2013-04-27 Thread krish
hi,m getting error while i was deploying my app to android tablet MTS MTAG7.0(Android version 2.2.2)...i just build (build succeeded) and run it(F5) it is showing my device in select device list...i just selected it and click okit was in debug mode...it started deploying and at the time of ins

[mono-android] error occuring after updating my android version in vs2010 while building the previous projects

2013-04-25 Thread krish
hi, while i was using mono for android 4.0 i m unable to deploy to real android devices ...thats y i updated my android version to 4.6.04 as when i open my vs2010 IDE it popups with window i just click on downl

[mono-android] deployment problem::my android device (tab) is not enabling in select device window

2013-04-23 Thread krish
hi, i have a problem of deployment actually i want my mono for android app into my MTS MTAG70.(android version 2.2)...i just followed the instructions http://docs.xamarin.com/guides/android/deployment,_testing,_and_metrics/set_up_for_device_development

Re: [mono-android] how to deploy mono for android app(.apk file) to android tablet

2013-04-19 Thread krish
k,nodoid ...i tried that i connect MTS MTAG7(Android ver 2.3) tablet to the system and installed the drivers after i opened visual studio and run(F5) it ,it is not showing any device(tablet) it is just showing only emulator...can u plz tell me the step by step process how to deploy ...plz its my ne

Re: [mono-android] how to deploy mono for android app(.apk file) to android tablet

2013-04-17 Thread krish
here i build and Deployed in Debug mode deployement is success in emulator...here m not build it in release modejust build and deployed in debug modenow i copied MonoAddModifyDeleteView.MonoAddModifyDeleteView-Signed.apk file which is in E:\MonoAddModifyDeleteView\MonoAddModifyDeleteV

[mono-android] how to deploy mono for android app(.apk file) to android tablet

2013-04-17 Thread krish
hi, m suffering from deployment problem...i tried one thing...i copied the .apk signed file(E:\MonoAddModifyDeleteView\MonoAddModifyDeleteView\bin\Debug) to sd card of tablet and installed it ...it is installed on the tablet but giving error AllControls.AllControls has stopped unexpectedly (For

[mono-android] M unable to view all the controls in my emulator(size problem)

2013-03-16 Thread krish
hi.. can any one tell the solution ... i m unable to view all the controls given in my layout design to emulator... this is due to size problem..how to increase the emulator screen size...actually i uses 3.7in WVGA(Nexus One) now i tried 10.1in WXGA(Tablet) size also even i m getting same proble

Re: [mono-android] Getting error in cursoradapter listview example

2013-03-14 Thread krish
hi...i tried listview with cursoradapter example in http://docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters/part_4_-_using_cursoradapters#1.1.creating-the-cursor...even i m getting same error at listview.Adapter = (IListAdapter)new HomeScreenCursorAdapter(this,cu

Re: [mono-android] Getting error in simplecursoradapter listview example

2013-03-14 Thread krish
now also m getting same error..no i did not add any thing external...i have taken a class template for vegetableDatabase.cs not activity template...i have taken activity template for HomeScreen.cs and i didnot add any layout template to my soln...Main.axml and Activity1.cs are default templates...

[mono-android] Getting error in simplecursoradapter listview example

2013-03-13 Thread krish
hi,i m doing practice on listviews concepti tried example in http://docs.xamarin.com/guides/android/user_interface/working_with_listviews_and_adapters/part_4_-_using_cursoradaptershere m getting error... UnhandledException...System.NullReferenceException at listview.Adapter = new SimpleC

[mono-android] errors in Referencing a Custom Row View in listview ex

2013-03-11 Thread krish
hi...m getting errors at TableItem at every where in my code namespace EtSpSqlite { [Activity(Label = "HomeScreebAdapter1")] public class HomeScreenAdapter1 : BaseAdapter //the type or namespace name 'TableItem' could not be found(are u missing a using directive or an assembly reference?)//

[mono-android] how to bind sqlite database table data to listview in MfA just like asp.net gridview

2013-03-07 Thread krish
hican any one help me to provide one sample example for displaying sqlite table data to listview control in mono ...the table contains 3 columns with data...e.g. empno,empname and empdesg...now i wanna bound or display that data in listview just like asp.net gridview control...can any one provi

Re: [mono-android] Enhancement code for Spinner

2013-03-06 Thread krish
hi... foreach string s in myDictionary.Keys myAdapter.Add(s); i wrote already foreach loop in form load to populate spinner with course names like protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.SaveSpinne

Re: [mono-android] Enhancement code for Spinner

2013-03-06 Thread krish
hi, i did not mean in that wayactually i searched many articles in mono android...i found very few articles regarding this topic and mono for android...but this site was fine actually...dont get angry...sorry if i hurted... i created dictionary...and i crated adapter in OnCreate(Bundle bu

Re: [mono-android] Enhancement code for Spinner

2013-03-06 Thread krish
hi, here m suffering from retrieivng code...i m saving spinner value in database with ur dictionary collection...now i wnt to populate the spinner with the coursename based on database corresponding value... i wrote some code to populate the spinner (retreive code )but it is not working... for a

Re: [mono-android] Enhancement code for Spinner

2013-03-04 Thread krish
ha,yes...i have to populate the spinner with the contents of the dictionary(ex: courses shud populate in the spinner for the user selection)... -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Enhancement-code-for-Spinner-tp5712950p5712989.html Sent from the Mo

Re: [mono-android] Enhancement code for Spinner

2013-03-04 Thread krish
hi, how to add dictionary to spinner ...i created one dictionary...now i have to populate spinner with that dictionary just like array adapter... /* List courses = new List(); courses.AddRange(new string[]{"Chemistry", "Physics", "Biology","Maths", "German"});

Re: [mono-android] Enhancement code for Spinner

2013-02-28 Thread krish
hi,its glad to tell i saved spinner value(courseNumbers) in database with ur assistance code...but when i click on retreive button now i want to populate that spinner with courses based on the value(courseNumber) in database based on sno... ex data in database: snocourseaddress 1000 303

Re: [mono-android] Enhancement code for Spinner

2013-02-28 Thread krish
hi... here is also getting error at e.Position...here the intellisense is not displaying Position property of e...even i m forcebly inserting getting error like this courseCode = string.Empty; spinner.Click += (object s,EventArgs e) => { Spinner t = (S

Re: [mono-android] Enhancement code for Spinner

2013-02-27 Thread krish
hi...m getting error at spinner.Click += (object s, EventArgs e) => { Spinner t = (Spinner)e; ///Error is cannot convert type 'System.EventArgs' to 'Android.Widget.Spinner' / after that i changed the code like Spinner t=(Spinner)s; //it is not showing error and i had another error at switch

[mono-android] Enhancement code for Spinner

2013-02-27 Thread krish
hi...m working on Spinner control saving and retrieving saving and retrieving of spinner control is working fine but it is saving displaying text in spinner...but i m wishing to save value(number) corresponding displaying text... here my requirement is spinner should have properties like Text a

Re: [mono-android] Enhancement in Xml Retreive code

2013-02-26 Thread krish
code in detailed as gave solution for previous problemthe same data should be displayed in listview Id Name Description 101krish manager 102 johnclerk like this as like exactly gridview control in .net by using listview or gridview ...i dont know really which

Re: [mono-android] Enhancement in Xml Retreive code

2013-02-25 Thread krish
hi...i m working on saving and retreiving of xml file...i have 3 edittexts and two buttonsby entering values in all 3 edittexts and click on save button,the data will saved to xml file...when i click on retrieve button the stored data shud display in textview(like label)...the data is saving

[mono-android] Enhancement in Xml Retreive code

2013-02-25 Thread krish
hi...i m working on saving and retreiving of xml file...i have 3 edittexts and two buttonsby entering values in all 3 edittexts and click on save button,the data will saved to xml file...when i click on retrieve button the stored data shud display in textview(like label)...the data is saving to

Re: [mono-android] Auto-close alert dialog after a specific time

2013-02-25 Thread krish
ha...u can use Toast as Automatic message box eg: Toast.MakeText(this, "plz fill all fields", ToastLength.Long).Show(); here this represents context...afterwards string or message u want to display and toastlength has two options Long and Short...this message will vanishes with in seconds au

[mono-android] how to store data to xml file (like database) from mono for android

2013-02-22 Thread krish
hii wnt to use xml file as data storage...can any one tell me how to store data to xml file from mono for android edit texts i have 2 edit text controls when i click on save button the data in the edit text have to store into the xml file...m very new to mono for android...where to create x

Re: [mono-android] Error while retreiving data from xml file

2013-02-22 Thread krish
ha,i changed the code ...i closed the FileStream even though it is giving error at same line xmldoc.Load(fs); here is my modified code: private void retrvXml() { string path = System.IO.Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments), "Emp7.xml");

[mono-android] Error while retreiving data from xml file

2013-02-22 Thread krish
hi.. here m getting error while retreiving data from xml file...the data is storing ...bt for retreiving m getting error.. actually i have 3 edittexts and 2 buttons(Save and Retrieve) and 1 textview...for the first time when i enter values in 3 edittexts and click on save button the data is storing

Re: [mono-android] how to store data to xml file (like database) from mono for android

2013-02-17 Thread krish
m getting error at XmlTextWriter textWriter = new XmlTextWriter(path); i m getting error at instantiation...new XmlTextWriter(path); the error is: XmlTextWriter.XmlTextWriter(TextWriter writer) (+2 overload(s)) Error: the best overloaded method match for 'System.Xml.XmlTextWriter.XmlTextWri

[mono-android] how to store data to xml file (like database) from mono for android

2013-02-15 Thread krish
hii wnt to use xml file as data storage...can any one tell me how to store data to xml file from mono for android edit texts i have 2 edit text controls when i click on save button the data in the edit text have to store into the xml file...m very new to mono for android...where to create x

Re: [mono-android] intellisense not working in .axml files

2013-02-15 Thread krish
me also same problem...can any one say how to again work intellisense in .axml file??? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/intellisense-not-working-in-axml-files-tp5712678p5712876.html Sent from the Mono for Android mailing list archive at Nabble.com.