Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
320
Delete Row messagebox layout broke in 12.2?
posted

Did the Delete Row messagebox layout break in v12.2?  Attached is a sample app along with a screenshot.  It looks like it is truncating the text of the message.

Thanks, Dave

TestGridDelete_And_Screenshot.zip
Parents Reply
  • 48586
    Verified Answer
    posted in reply to Les

    Hello,

     

    Microsoft posted a handful of workarounds within the link provided on the work item; one of which is specific to projects that target the .NET 4.5 Framework.

    “If your are building a 4.5 application you would need to request the user to disable themes on the target machine or apply workaround #1.”

     

    Workaround #1:

    1. In order to achieve runtime parity between NETFX 4.0 and 4.5, when building a manually change SubSystemVersion compiler option in the project file targeting NETFX 4.5, to a value lower that 6.00, see this article for details:
      http://msdn.microsoft.com/en-us/library/hh965708.aspx
      For example: add the following property to your project file:
      "<subsystemversion>5.01</subsystemversion> "
      Note that 64bits does not support all subsystem versions numbers.
Children