when set RadMessageBox.UseCompatibleTextRendering = false;
at runtime is generated System.StackOverflowException.
To workaround:
private void RadForm1_Load(object sender, EventArgs e)
{
foreach (Control control in RadMessageBox.Instance.Controls)
{
RadControl radControl = control as RadControl;
if (radControl != null)
{
radControl.UseCompatibleTextRendering = false;
}
}
}
Hello Giancarlo,
I am glad that the suggested solution works fine for you. We will do our best to introduce a fix in our next release.
Do not hesitate to contact us if you have other questions.
Regards,
Nadya
Progress Telerik
ok resolved.
thank you very much, but I hope the bug on the property will be corrected.
best regard
Giancarlo