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=80049 --- shadow/80049 2006-11-25 17:19:50.000000000 -0500 +++ shadow/80049.tmp.23603 2006-11-25 17:19:50.000000000 -0500 @@ -0,0 +1,53 @@ +Bug#: 80049 +Product: Mono: Class Libraries +Version: 1.1 +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: SendKeys.Send() feature is not implemented + +To reproduce: + +1. Add the following code to DataGrid based class + +protected override bool ProcessCmdKey(ref Message msg, Keys keyData) +{ // Enable navigation using Enter + if (msg.WParam.ToInt32() == (int)Keys.Enter) { + SendKeys.Send("{Tab}"); + return true; + } + } + +2. Run application and press Enter key in grid. + +Observed: + +The requested feature is not implemented.Stack trace: at +System.Windows.Forms.SendKeys.CharToVKey (Char key) [0x00000] + at System.Windows.Forms.SendKeys.SendKey (IntPtr hwnd, Char key, Int32 +repeat_count) [0x00000] + at System.Windows.Forms.SendKeys.Send (System.String key_string) +[0x00000] + at Myapp.Windows.Forms.DataGrid.ProcessCmdKey +(System.Windows.Forms.Message& msg, Keys keyData) [0x00000] + at System.Windows.Forms.Control.ProcessCmdKey +(System.Windows.Forms.Message& msg, Keys keyData) [0x00000] + at System.Windows.Forms.Control.InternalPreProcessMessage +(System.Windows.Forms.Message& msg) [0x00000] + at System.Windows.Forms.Control.PreProcessMessage +(System.Windows.Forms.Message& msg) [0x00000] + at System.Windows.Forms.Application.RunLoop (Boolean Modal, +System.Windows.Forms.ApplicationContext context) [0x00000] + at System.Windows.Forms.Application.Run (System.Windows.Forms.Form +mainForm) [0x00000] +... _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
