StrataFrame Forum

Dev-Express Control Problem.

http://forum.strataframe.net/Topic28298.aspx

By Paul Chase - 9/9/2010

Hi Guys,

I am having an issue with the Dev-Express Controls. The Binding Field and Binding Property Type Editor's are not working. I am using VS2010 and Dev Ex version 10.1 .  Let me know if you need anthing else.

Thanks

By Paul Chase - 9/10/2010

FYI a stock strataframe control work's as expected, the problem seems to be only affecting the inherited UI controls in VS2010 . The same controls work fine with VS2008,using the same versions of SF and Dev Express.

Paul 
By Ivan George Borges - 9/11/2010

Hi Paul.

Yep, we are aware of that one and the guys have it on the list.

As you probably have guessed by now, it will work if you type in the sets for those properties, but the dropdowns somehow are not showing up.
By Trent L. Taylor - 9/13/2010

You can resolve this yourself without a new build being required.  VS2010 is requiring that an assembly version is included as part of the type editor definition.  We have this in a constant and is easy to change.

  1. Open the Inherited UI assembly. 
  2. At the root level, there is a file named ControlConstants.vb
  3. Open it and change the following line (Comment the red line and add the yellow line):

    'Public Const EditorAssemblyExt As String = ", MicroFour StrataFrame Extensibility"
    Public Const EditorAssemblyExt As String = ", MicroFour StrataFrame Extensibility, Version=" & BuildInformation.BuildAssemblyVersion & ", Culture=neutral, PublicKeyToken=99fe9917f71608a7"


  4. Once this is done, rebuild the assembly.
  5. Get out of Visual Studio and go back in and you should have the functionality back.
I have updated our source so that this will be included in the next update.
By Paul Chase - 9/13/2010

Thanks I will make the change.