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

2013-02-26 Thread Paul Johnson
Hi, Glad to hear it's working PLZ EXPLAIN IN DETAILED Example WITH DESIGN AND CODE AS U PREVIOUSLY EXPLAIN What have you got so far? For something like this, you can use a TableView Paul -- "Space," it says, "is big. Really big. You just won't believe how vastly, hugely, mindbogglingl

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

2013-02-26 Thread krish
hi..very much thanks to uur code is working exactly...bt i have another major problem...xml saving is good..when i click on retreive button the data what stored should be populate in listview control.. as like gridview control in .net in rows and columns format...can u please help me with ur co

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

2013-02-25 Thread Paul Johnson
Hi, (I've snipped everything for a reason) I'm looking at your code. In the original you had a sharing violation exception. Pretty much this means you're trying to create a file that already exists. You are also not closing off the StreamWriter stw = new StreamWriter (path, true); line. Go

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

2013-02-25 Thread Tomasz Cielecki
You are just overriding the old entries instead of appending new entries to your XML, that is what is your problem is. I've made a sample which you can see here: https://gist.github.com/Cheesebaron/5029622 which works as intended. I am not sure if my method of writing the XML is the most optimal a

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

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

2013-02-25 Thread Tomasz Cielecki
How does your Save method look like? Because it might be where your problem is. I think that you are overriding your XML instead of appending entries to it. Med Venlig Hilsen / With Best Regards Tomasz Cielecki http://ostebaronen.dk On Mon, Feb 25, 2013 at 1:05 PM, krish wrote: > hi...i m work

[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