[Mono-list] gdiplus source releases

2013-09-04 Thread Ian Norton
Hiya, I notice libgdiplus has been getting updates but don't see a new tarball or git tag. What version/changelist should we be using with stable mono 3.2? Regards Ian ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] GdiPlus NullReferenceException

2005-02-18 Thread A Rafael D Teixeira
libgdiplus simply iniatilizes the needed fields and then mallocs enough memory for the buffer and returns. Probably malloc is failling to return the buffer, because it probably isn't thread-safe, and no guarding is being done on it from what I could check in the sources bitmap.cs (System.Drawing)

[Mono-list] GdiPlus NullReferenceException

2005-02-16 Thread Yury Serdyuk
Hi ! NullReferenceException is thrown when trying to launch GDI application which uses a lot of threads : using System; using System.Threading; using System.Drawing; public class TestGDIPlus { public static void Main( string[] args ) { int nThreads = int.Parse( args [0] ); for ( int i = 0;

Re: [Mono-list] gdiplus

2004-03-20 Thread Pedro Santos
Well, I am having some troubles. I just installed mono-0.31, libgdi, wine, etc. I am just running a simple Hello World and I got this: bash-2.05b$ mono h.exe Unhandled Exception: System.EntryPointNotFoundException: GdipCreateFontFamilyFromName in 0x00053 (wrapper managed-to-native)

[Mono-list] gdiplus

2004-03-19 Thread Kevin Jones
I'm trying to get Winforms to work on Mono under Fedora core 1. I've installed the mono and mono devel packages, I've also installed WINE, WINE-MONO, Cairo and libgdiplus. However I don't have gdiplus.dll on my system. Is there a version of gdiplus.dll for Linux? If so where do I find it. Google

Re: [Mono-list] gdiplus

2004-03-19 Thread Ravindra
On Fri, 2004-03-19 at 16:10, Kevin Jones wrote: I'm trying to get Winforms to work on Mono under Fedora core 1. I've installed the mono and mono devel packages, I've also installed WINE, WINE-MONO, Cairo and libgdiplus. However I don't have gdiplus.dll on my system. Is there a version of

Re: [Mono-list] gdiplus

2004-03-19 Thread Kevin Jones
Thanks Ravindra, I've installed the libgdiplus RPM, I assume from your reply that this isn't enough? Kevin On Fri, 2004-03-19 at 10:41, Ravindra wrote: On Fri, 2004-03-19 at 16:10, Kevin Jones wrote: I'm trying to get Winforms to work on Mono under Fedora core 1. I've installed the mono

Re: [Mono-list] gdiplus

2004-03-19 Thread Ravindra
Hello Kevin, On Fri, 2004-03-19 at 17:22, Kevin Jones wrote: I've installed the libgdiplus RPM, I assume from your reply that this isn't enough? Actually, I meant you do not need gdiplus.dll separately. You need this dll, only if you are running mono on windows. On Linux, you just need

Re: [Mono-list] gdiplus

2004-03-19 Thread Pedro Santos
Well, I am having some troubles. I just installed mono-0.31, libgdi, wine, etc. I am just running a simple Hello World and I got this: bash-2.05b$ mono h.exe Unhandled Exception: System.EntryPointNotFoundException: GdipCreateFontFamilyFromName in 0x00053 (wrapper managed-to-native)

Re: [Mono-list] gdiplus

2004-03-19 Thread Jordi Mas
En/na Pedro Santos ha escrit: Well, I am having some troubles. I just installed mono-0.31, libgdi, wine, etc. I am just running a simple Hello World and I got this: Hello Pedro, Can you make sure that you are running libgdiplus 0.2? If this is the case, please send me the example that you are

Re: [Mono-list] gdiplus

2004-03-19 Thread Pedro Santos
Hi Jordi: # pkg-config --modversion libgdiplus 0.2 # pkg-config --modversion cairo 0.1.18 This is the example: //- namespace Microsoft.Samples.WinForms.Cs.SimpleHelloWorld { using System; using System.Windows.Forms;

Re: [Mono-list] gdiplus

2004-03-19 Thread Miguel de Icaza
Hello, I'm trying to get Winforms to work on Mono under Fedora core 1. I've installed the mono and mono devel packages, I've also installed WINE, WINE-MONO, Cairo and libgdiplus. However I don't have gdiplus.dll on my system. Is there a version of gdiplus.dll for Linux? If so where do I find

Re: [Mono-list] gdiplus

2004-03-19 Thread Kevin Jones
Thanks Miguel, nope, mono-wine, where is winelib? Kevin Jones On Fri, 2004-03-19 at 17:04, Miguel de Icaza wrote: Hello, I'm trying to get Winforms to work on Mono under Fedora core 1. I've installed the mono and mono devel packages, I've also installed WINE, WINE-MONO, Cairo and

Re: [Mono-list] gdiplus

2004-03-19 Thread Miguel de Icaza
Thanks Miguel, nope, mono-wine, where is winelib? Its listed on www.go-mono.com/download.html It is also all spelled out on the Mono Release Notes ;-) ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] gdiplus

2004-03-19 Thread Peter
Hello, I have downloaded, compiled and installed 'wine-lib 0.1'. When I try to run the sample Pedro provide I get the following exception: Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.Control ---

Re: [Mono-list] gdiplus

2004-03-19 Thread Miguel de Icaza
Hey, I have downloaded, compiled and installed 'wine-lib 0.1'. When I try to run the sample Pedro provide I get the following exception: Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for System.Windows.Forms.Control ---

Re: [Mono-list] gdiplus

2004-03-19 Thread Joop
Looks like Ximian forgot to package the winelib rpm. I had to build that file from winelib.tar.gz from the download page. But even after that I could not get the thing to load. It camplained about not able to load winelib.exe.so. Even when I put this in the correct PATH and even when I set

Re: [Mono-list] gdiplus

2004-03-19 Thread Kevin Jones
Ok, so after doing export LD_LIBRARY_PATH=/usr/lib:/usr/local/lib and running the sample I now get Could not stat /nt (No such file or directory), ignoring drive E: Could not stat /home/kevinj/.wine/${HOME} (No such file or directory), ignoring drive F: Warning: could not find wine config

Re: [Mono-list] gdiplus

2004-03-19 Thread Kevin Jones
s'ok I've found it. Sorry for the noise, Kevin On Fri, 2004-03-19 at 17:37, Kevin Jones wrote: Thanks Miguel, nope, mono-wine, where is winelib? Kevin Jones On Fri, 2004-03-19 at 17:04, Miguel de Icaza wrote: Hello, I'm trying to get Winforms to work on Mono under Fedora

Re: [Mono-list] gdiplus

2004-03-19 Thread Peter
Miguel, I didn't find the links, I have made them manually. Where were they supposed to be ? In /usr/lib ? After making the symbolic links, the 'hello world' runs. Thank you for the info Peter Op vrijdag 19 maart 2004 19:35, schreef u: Hey, I have downloaded, compiled and installed