Is there anyway to browse for a file or folder in a propetygridcontrol
Imports
' Requires Reference to System.Design
Public
<Editor(
End
Regards
DAz
"HKV Consultants" wrote in message news:191722@community.devexpress.com... Is there anyway to browse for a file or folder in a propetygridcontrol http://community.devexpress.com//forums/p/56814/191722.aspx#191722
"Darren Talbot" wrote in message news:191822@community.devexpress.com... Try this simple example as a starting point. Imports System.Drawing.DesignImports System.Windows.Forms.DesignImports System.ComponentModel ' Requires Reference to System.Design Public Class XtraUserControl1 Private _Filename As String <Editor(GetType(FileNameEditor), GetType(UITypeEditor))> _Public Property Filename() As String Get Return _Filename End Get Set(ByVal value As String) _Filename = value End SetEnd Property End Class Regards DAz "HKV Consultants" wrote in message news:191722@community.devexpress.com... Is there anyway to browse for a file or folder in a propetygridcontrol http://community.devexpress.com//forums/p/56814/191722.aspx#191722 http://community.devexpress.com//forums/p/56814/191822.aspx#191822