Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=80744 --- shadow/80744 2007-02-06 17:06:09.000000000 -0500 +++ shadow/80744.tmp.5036 2007-02-06 17:06:09.000000000 -0500 @@ -0,0 +1,65 @@ +Bug#: 80744 +Product: Mono: Class Libraries +Version: 1.0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Duplicate short date in DateTimePicker + +To reproduce: + +Run code + +Observed: + +month and year properties appear twice: + +4.02.2007 .02.2007 + +Expected: + +4.02.2007 + + +Code to reproduce: + +using System.Windows.Forms; +using System.Data; +static class Program { + static void Main() { + Application.Run(new Frm()); + } +} + +class Frm : Form { + internal System.Windows.Forms.DateTimePicker DateTimePicker1; + + private void InitializeDateTimePicker() { + this.DateTimePicker1 = new +System.Windows.Forms.DateTimePicker(); + DateTimePicker1.Format = DateTimePickerFormat.Short ; + this.Controls.Add(this.DateTimePicker1); + } + public Frm() { + InitializeDateTimePicker(); + } +} + +Environment + +MONO 1.2.3 preview +.NET 2 profile +Windows XP SP2 +short date format dd.mm.yyyy +todays date Feb 04, 2007 +Visual C# Express 2005 _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
