Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-11-09 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of sams > > I know this post is now forking off in all kinds of different directions but > I just wanted to ask one more thing - the original app I was talking about > now includes a loop that

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-11-09 Thread sams
Hi, I know this post is now forking off in all kinds of different directions but I just wanted to ask one more thing - the original app I was talking about now includes a loop that determines the size of files whose names are passed in via XML. This takes a little time to run so I'd like to add

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-11-06 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of sams > > I did experiment with accessing a sqlite db directly > which was also very simple to implement. If you care about sqlite working cross-platform, be sure to test that explicitly. Most

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-11-06 Thread Jonathan Mitchell
System.Data.Sqlite works well cross platform though you do have to build your own version for OS X as the distributed binaries are mixed mode. > On 6 Nov 2015, at 13:43, Edward Ned Harvey (mono) > wrote: > >> From: mono-list-boun...@lists.ximian.com

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-11-06 Thread sams
Hi, Thanks to everyone who posted here - I ended up using Xamarin as the IDE for a Monomac project. I found it really easy to work with and c# seemed like a very natural switch from VB.net. The IDE switched to the xCode IDE for UI design which seemed to work perfectly. End result was a compiled

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-28 Thread Edward Ned Harvey (mono)
> From: mono-list-boun...@lists.ximian.com [mailto:mono-list- > boun...@lists.ximian.com] On Behalf Of sams > > Thanks all, some really useful info there - I'm going to try MonoMac and the > libraries suggested by Mel. I'll post back to let you know how I got on. MonoMac is the precursor to

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-28 Thread Edward Ned Harvey (mono)
> MonoMac is the precursor to Xamarin.Mac. You should use Xamarin.Mac. > > If you get the Starter edition of Xamarin Studio, it'll include Xam.Mac, but > the > limitation is a small app size. And maybe a restriction prohibiting > distribution > to the app store (I'm not sure).

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-27 Thread sams
Thanks all, some really useful info there - I'm going to try MonoMac and the libraries suggested by Mel. I'll post back to let you know how I got on. thanks Sam -- View this message in context: http://mono.1490590.n4.nabble.com/Using-Mono-C-to-develop-simple-OSX-app-tp4666818p4666827.html

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-26 Thread Timotheus Pokorra
> First, have a look to see if there are any libraries out there that will > take the pain from generating the PDFs. If there isn't, have a look at any > command line programs that may be able to help. I am using pdfsharp on Mono for details see

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-26 Thread Maury Markowitz
> On Oct 26, 2015, at 9:48 AM, sams wrote: > > Hi guys, > > Sorry for the basic post but I'm new to OSX development and Mono. I am a > VB.net programmer and want to develop a simple single form app native to OSX > that will open a text file, parse it and generate a PDF

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-26 Thread sams
Thanks Maury. Am I right in thinking that there's an option that allows use of the native mac UI using C# as a language? I'm guessing its interacting with obj c in some way... -- View this message in context:

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-26 Thread Miljenko Cvjetko
Hi On 20151026 15:19 , sams wrote: Thanks Maury. Am I right in thinking that there's an option that allows use of the native mac UI using C# as a language? You are right. Check Mono.Mac samples https://github.com/mono/monomac/tree/master/samples

Re: [Mono-list] Using Mono/C# to develop simple OSX app

2015-10-26 Thread Paul Johnson
Hi, Sorry for the basic post but I'm new to OSX development and Mono. I am a VB.net programmer and want to develop a simple single form app native to OSX that will open a text file, parse it and generate a PDF with some text and a couple of images. The opening of the file is easy enough in