_ Partial Class FolderUserControl Inherits System.Windows.Forms.UserControl 'UserControl overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Me.TextEdit1 = New DevExpress.XtraEditors.TextEdit() Me.StyleController1 = New DevExpress.XtraEditors.StyleController(Me.components) Me.SimpleButton1 = New DevExpress.XtraEditors.SimpleButton() Me.FolderBrowserDialog = New System.Windows.Forms.FolderBrowserDialog() CType(Me.TextEdit1.Properties, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.StyleController1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'TextEdit1 ' Me.TextEdit1.Location = New System.Drawing.Point(0, 0) Me.TextEdit1.Name = "TextEdit1" Me.TextEdit1.Size = New System.Drawing.Size(409, 20) Me.TextEdit1.StyleController = Me.StyleController1 Me.TextEdit1.TabIndex = 0 ' 'SimpleButton1 ' Me.SimpleButton1.Location = New System.Drawing.Point(426, 0) Me.SimpleButton1.Name = "SimpleButton1" Me.SimpleButton1.Size = New System.Drawing.Size(18, 20) Me.SimpleButton1.TabIndex = 1 Me.SimpleButton1.Text = "..." ' 'FolderUserControl ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.Controls.Add(Me.SimpleButton1) Me.Controls.Add(Me.TextEdit1) Me.Name = "FolderUserControl" Me.Size = New System.Drawing.Size(444, 22) CType(Me.TextEdit1.Properties, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.StyleController1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents TextEdit1 As DevExpress.XtraEditors.TextEdit Friend WithEvents StyleController1 As DevExpress.XtraEditors.StyleController Friend WithEvents SimpleButton1 As DevExpress.XtraEditors.SimpleButton Friend WithEvents FolderBrowserDialog As System.Windows.Forms.FolderBrowserDialog End Class