J
Jeffrey Tan[MSFT]
Hi George,
Sorry for letting you wait for so long.
For these days, I have contacted the product team for #3 issue, then the
product team has confirmed this issue as a bug. Below is the workaround:
Create a new form to inherits the Form class and overrides its
UpdateDefaultButton function. The code is:
Public Class MyForm
Inherits System.Windows.Forms.Form
Protected Overrides Sub UpdateDefaultButton()
' Do nothing.
End Sub
End Class
In the MDI form, inherits the Form from our inherited form instead of the
original form class.
Public Class Form1
Inherits MyForm
Hope this helps.
===========================================
Thank you for your patience and cooperation. If you have any questions or
concerns, please feel free to post it in the group. I am standing by to be
of assistance.
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
Sorry for letting you wait for so long.
For these days, I have contacted the product team for #3 issue, then the
product team has confirmed this issue as a bug. Below is the workaround:
Create a new form to inherits the Form class and overrides its
UpdateDefaultButton function. The code is:
Public Class MyForm
Inherits System.Windows.Forms.Form
Protected Overrides Sub UpdateDefaultButton()
' Do nothing.
End Sub
End Class
In the MDI form, inherits the Form from our inherited form instead of the
original form class.
Public Class Form1
Inherits MyForm
Hope this helps.
===========================================
Thank you for your patience and cooperation. If you have any questions or
concerns, please feel free to post it in the group. I am standing by to be
of assistance.
Best regards,
Jeffrey Tan
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.