Completed
Last Updated: 24 Jul 2014 07:40 by Jesse Dyck
ADMIN
Anton
Created on: 22 Feb 2013 07:14
Category: Form
Type: Bug Report
13
FIX. RadMessageBox - Incorrect measure of the text message, that leads to wrong size of RadMessageBox.
To workaround this issue you should dispose the Instance property of RadMessageBox after each show of message box. For example:

WORKAROUND: 
RadMessageBox.Show("Text");
RadMessageBox.Instance.Dispose();

If you are using themes, consider the following approach:
            RadMessageBox.SetThemeName("Windows7");
            RadMessageBox.Show("This is some long text that sometimes does not wrap as it should.");
            var field = typeof(RadMessageBox).GetField("radMessageBoxForm", BindingFlags.NonPublic | BindingFlags.Static);
            field.SetValue(null, null);
8 comments
Jesse Dyck
Posted on: 19 Mar 2013 04:33
Hello guys, the issue is scheduled and will be addressed in the upcoming Service Pack, which should be out before the end of March.  
Jesse Dyck
Posted on: 17 Mar 2013 14:03
Can somebody from Telerik please let us know when the 2013 Q1 SP will be released
Jesse Dyck
Posted on: 06 Mar 2013 12:00
Please release a hotfix for this issue asap
Jesse Dyck
Posted on: 27 Feb 2013 12:19
In my opinion, WinForms Q1 2013 is meaningless downloading until this bug is fixed.
Seriously, you recommended fix feels like a real emergency solution. Quick bugfix for this thanks
Jesse Dyck
Posted on: 26 Feb 2013 09:06
It is not practical to go through our entire application and add lines of code after every message box.  This needs to be scheduled for a fix shortly.
Jesse Dyck
Posted on: 25 Feb 2013 08:41
This is a major issue for us. We use MessageBoxes a lot and occasionally even Buttons are not reachable within the shown size.
Jesse Dyck
Posted on: 22 Feb 2013 08:49
This is a really big bug. Must be fixed immediately with a patch for Q1 2013 release
Jesse Dyck
Posted on: 22 Feb 2013 08:15
This is an important problem for me. Having to go through my large winforms application and add a dispose to each MessageBox is a pain!