Paul, there was no "big update on cairo/libgdiplus" yet. We're still working on some big-endian (Mac) issues before switching over. In fact here have been no changes to MWF iteself in the last few days.
Peter -----Original Message----- From: "Paul" <[EMAIL PROTECTED]> To: "winforms" <[email protected]> Date: Saturday, 27 August, 2005 03:53 Subject: [Mono-winforms-list] MWF broken? Hi, Code below worked prior to the big update on cairo/libgdiplus - now it's dead and recompiling makes no difference. Is MWF broken? I have done a make distclean on the modules I use (mono/mcs, gtk-sharp, libgdiplus, monodoc, monodevelop, gtksourceview-sharp & gtkmozembed-sharp) so I'd assume everything was fine on that score TTFN Paul using System; using System.Drawing; using System.Windows.Forms; public class Form1:Form { private System.Windows.Forms.DateTimePicker dtp; public Form1() { InitialiseComponent(); } private void InitialiseComponent() { this.dtp = new System.Windows.Forms.DateTimePicker(); this.dtp.Location = new System.Drawing.Point(8, 8); this.dtp.Name = "date time picker"; this.dtp.Size = new System.Drawing.Size(288, 20); this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(350, 130); this.Controls.Add(this.dtp); this.Name = "Form1"; this.Text = "Testing 1..2..3"; this.Load += new System.EventHandler(this.Form1_Load); } [STAThread] static void Main() { Application.Run(new Form1()); } private void Form1_Load(object s, System.EventArgs e) {} } -- "A lot of football success is in the mind. You must believe you are the best and then make sure that you are. In my time at Liverpool we always said we had the best two teams on Merseyside, Liverpool and Liverpool Reserves." - Bill Shankly _______________________________________________ Mono-winforms-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-winforms-list
