Re: [Mono-list] Does Properties.Settings.Default.Save() work under Linux

2015-04-27 Thread Edward Ned Harvey (mono)
From: mono-list-boun...@lists.ximian.com [mailto:mono-list- boun...@lists.ximian.com] On Behalf Of ChrisD I am having problems saving user settings under Linux. Everything works fine if I run under Windows. On Linux, I copy the files appname.exe and appname-exe.config to appname

[Mono-dev] ODBC GetSchema failing

2015-04-27 Thread discofire
I have a very simple application that connects to an ODBC data source (MySQL at the moment, but I plan on connecting to data sources without ADO.NET drivers, and thus need ODBC support). I am able to query the database without any problems, and I can run GetSchema() in order to get a list of

[Mono-list] Does Properties.Settings.Default.Save() work under Linux

2015-04-27 Thread ChrisD
I am having problems saving user settings under Linux. Everything works fine if I run under Windows. On Linux, I copy the files appname.exe and appname-exe.config to appname directory and execute using mono appname.exe. As a simple example: I have created a Winform with a TextBox as use the

Re: [Mono-winforms-list] Winform exception while executing on settopbox, Please help

2015-04-27 Thread Prashanth Mn
Hi, i'm using Mono to bring up sample form using Mono on settobbox (broadcom chipset) . We could able to compile the sample code and also all the Mono dependent libraries including libgdiplus, cairo, X11, Pixman etc using cross toolchain provided by Broadcom. After cross compiling all the

Re: [Mono-list] Does Properties.Settings.Default.Save() work under Linux

2015-04-27 Thread Chris Down
Thanks for replying. The first thing is, don't expect windows forms to be cross platform compatible. They're kinda sorta implemented in mono, but not good. The recommendation is to either design the business logic to be cross-platform, and then design the GUI separately for each platform

[Mono-dev] WebSocket Support in Mono

2015-04-27 Thread techi eth
Hi, Is mono is supporting Websocket ? When I look Web socket handling in HttpListnerRequest in .Net4.5 implementation in mono it is always returning False.(Flag : IsWebSocketRequest) Thanks ___ Mono-devel-list mailing list

[Mono-list] [mono][CPPSharp][GSoC'15] Introduction and asking for furthur guidance

2015-04-27 Thread Abhinav Tripathi
Hello! I am Abhinav Tripathi. I have been selected for CPPSharp - Inline C++ Code Improvement project under Mono... I have a good C++ experience and am new to C#. I am a 2nd year B.Tech Student. I was looking for guidance on how to start the project and as a first step how to set-up my

Re: [Mono-dev] ODBC GetSchema failing

2015-04-27 Thread discofire
Ok, so it looks as though there is a problem with the System.Data.Odbc library... a pretty major and glaring problem that I can't believe was even allowed to be checked into the repository. Here is the code for the GetSchema calls: public override DataTable GetSchema ()

Re: [Mono-dev] ODBC GetSchema failing

2015-04-27 Thread Atsushi Eno
If you haven't, you might want to try the latest mono master which replaced System.Data implementation with Microsoft's referencesource. System.Data.Odbc implementation depends on native ODBC, and on non-Windows platform it relies on libodbc which might bring implementation glitch. That