Re: [mono-android] How to connect Sqlite Database with Monodroid?

2013-01-24 Thread jalle007
Hi I tried many samples but none of them worked. I dont understand why is so complicated to use db in programming? you said you know of some working ? Can I have a link please?   Jalle BestBonusMoney.com > > From: Wally McClure [via Mono for Android] > >To

Re: [mono-android] Set Tab Text

2013-01-24 Thread Matthias
Hello Derek, First I doubt you missing anything. It's just missing by design. There should be a different way cause the Tab Indicator is just a regular view that is part of the current TabWidget. I just checked the resources and the tab_indicator.xml has 2 ids @+id/icon and @+id/title. So you ca

[mono-android] Xcode broke my m4a

2013-01-24 Thread Steven Pack
Hi all, I bought m4a last year, but it's been over a year. I recently installed Xcode and now MonoDevelop says: Mono for Android is not installed The Mono for Android SDK is required to develop applications for Android. Either a recent upgrade of Xcode has removed the SDK or it has never been

Re: [mono-android] Xcode broke my m4a

2013-01-24 Thread Atsushi Eno
Hello, Steven Pack wrote: Hi all, I bought m4a last year, but it's been over a year. I recently installed Xcode and now MonoDevelop says: Mono for Android is not installed The Mono for Android SDK is required to develop applications for Android. Either a recent upgrade of Xcode has removed

Re: [mono-android] How to connect Sqlite Database with Monodroid?

2013-01-24 Thread Jeremy A. Kolb - ARA/NED
What's wrong? What exactly is failing? Are there error messages or is it compilation that's failing for you? We can't tell you anything w/o more information. From: monodroid-boun...@lists.ximian.com [mailto:monodroid-boun...@lists.ximian.com] On Behalf Of jalle007 Sent: Thursday, January 24,

Re: [mono-android] How to connect Sqlite Database with Monodroid?

2013-01-24 Thread Jonathan Pryor
On Jan 24, 2013, at 4:06 AM, jalle007 wrote: > I tried many samples but none of them worked. I dont understand why is so > complicated to use db in programming? you said you know of some working ? Apparently you didn't get my earlier reply. Let's see if you get this one: Android.Database.Sqlite

Re: [mono-android] Mono for Android installation fails on Win7 Prof.

2013-01-24 Thread Banzai
Hi Jonathan! That link help me a lot! I have downloaded the msi-Installer successfully and run the installation without any problems ! Thank you so much! But I have try to download the msi with Firefox 18 and the progress stucks by ~161MB, like in the Mono4Android-Installer. So the download

Re: [mono-android] How to connect Sqlite Database with Monodroid?

2013-01-24 Thread jalle007
Neither of these samples works for me: CAN ANYONE PLEASE POST WORKING SAMPLE OF WORKING WITH EXISTING DATABASE. This mono framework is useless for me if I can't work with dbs -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/How-to-connect-Sqlite-Database-with-Mono

[mono-android] Dynamically load dll into app

2013-01-24 Thread jr1984
Hi, is it possible to load an dll with Assembly.Load when it's in the asset folder? I have platform specific dll's for windows and android. I tried to use the android specific dll as asset (also in the build action), but when I try to load it into my app it's not found (i used the path: file:///an

Re: [mono-android] How to connect Sqlite Database with Monodroid?

2013-01-24 Thread jalle007
  hi Jeremy   ok i figure out by myself and now its working. but i must say that mono is still not stable and i am thinking to switch to enclipse if it fails to be problematic J   Many thanks and cheers !   Jalle BestBonusMoney.com > > From: Jeremy A. Kolb - AR

Re: [mono-android] Dynamically load dll into app

2013-01-24 Thread Jonathan Pryor
On Jan 23, 2013, at 11:13 AM, jr1984 wrote: > is it possible to load an dll with Assembly.Load when it's in the asset > folder? Should be, though I wouldn't recommend it... > I have platform specific dll's for windows and android. I tried to use the > android specific dll as asset (also in the

Re: [mono-android] Dynamically load dll into app

2013-01-24 Thread Jonathan Pryor
Forgot to mention: you can use Assembly.Load("AssemblyName.dll") to load a Referenced assembly. See also: http://www.jprl.com/tmp/Scratch.AssemblyLoad.zip - Jon On Jan 24, 2013, at 5:03 PM, Jonathan Pryor wrote: > On Jan 23, 2013, at 11:13 AM, jr1984 wrote: >> is it possible to load