StrataFrame Forum

Can you make a change to the inherited ui

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

By Paul Chase - 8/1/2007

In the inherited ui source code can you please change the browse dialog property type from a dev ex browse dialog to SF browse dialog?

That way either type of browse dialog can be used with the maintenance for toolstrip as the dev ex inherits from the StrataFrame.UI.Windows.Forms.BrowseDialog

  ''' <summary>
        ''' The browse dialog form to display when the Browse button is clicked by the user.
        ''' </summary>
        ''' <remarks></remarks>
        <Category(FORM_FRAMEWORK_CATEGORY), Description("The browse dialog form to display when the Browse button is clicked by the user.")> _
        Public Property BrowseDialog() As BrowseDialog
            Get
                Return _BrowseDialog
            End Get
            Set(ByVal value As BrowseDialog)
                _BrowseDialog = value

                '-- Set the visibility
                SetObjectVisibility()
            End Set
        End Property

--TO

''' <summary>

''' The browse dialog form to display when the Browse button is clicked by the user.

''' </summary>

''' <remarks></remarks>

<Category(FORM_FRAMEWORK_CATEGORY), Description("The browse dialog form to display when the Browse button is clicked by the user.")> _

Public Property BrowseDialog() As MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog

Get

Return _BrowseDialog

End Get

Set(ByVal value As MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog)

_BrowseDialog = value

'-- Set the visibility

SetObjectVisibility()

End Set

End Property

By Trent L. Taylor - 8/2/2007

Sounds reasonable enough Smile  I will look into this for the next release.
By Paul Chase - 8/2/2007

Thanks Trent!