diff --git a/FindInFilesForm.Designer.cs b/FindInFilesForm.Designer.cs index 59cb4e4..2d6148e 100644 --- a/FindInFilesForm.Designer.cs +++ b/FindInFilesForm.Designer.cs @@ -243,6 +243,7 @@ private void InitializeComponent() { // textBoxGlob // textBoxGlob.Anchor = AnchorStyles.Top | AnchorStyles.Right; + textBoxGlob.AutoCompleteMode = AutoCompleteMode.Suggest; textBoxGlob.Location = new Point(676, 12); textBoxGlob.Name = "textBoxGlob"; textBoxGlob.Size = new Size(151, 23); @@ -252,6 +253,7 @@ private void InitializeComponent() { // textBoxEncoding // textBoxEncoding.Anchor = AnchorStyles.Top | AnchorStyles.Right; + textBoxEncoding.AutoCompleteMode = AutoCompleteMode.Suggest; textBoxEncoding.Location = new Point(676, 38); textBoxEncoding.Name = "textBoxEncoding"; textBoxEncoding.Size = new Size(151, 23); @@ -260,6 +262,8 @@ private void InitializeComponent() { // comboBoxSearchPath // comboBoxSearchPath.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + comboBoxSearchPath.AutoCompleteMode = AutoCompleteMode.Suggest; + comboBoxSearchPath.AutoCompleteSource = AutoCompleteSource.FileSystem; comboBoxSearchPath.FormattingEnabled = true; comboBoxSearchPath.Location = new Point(108, 12); comboBoxSearchPath.Name = "comboBoxSearchPath"; @@ -269,6 +273,7 @@ private void InitializeComponent() { // comboBoxSearchPattern // comboBoxSearchPattern.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right; + comboBoxSearchPattern.AutoCompleteMode = AutoCompleteMode.Suggest; comboBoxSearchPattern.FormattingEnabled = true; comboBoxSearchPattern.Location = new Point(108, 38); comboBoxSearchPattern.Name = "comboBoxSearchPattern"; diff --git a/NET48/FindInFilesForm.Designer.cs b/NET48/FindInFilesForm.Designer.cs index e802cc0..4cd5826 100644 --- a/NET48/FindInFilesForm.Designer.cs +++ b/NET48/FindInFilesForm.Designer.cs @@ -265,6 +265,7 @@ private void InitializeComponent() { // textBoxGlob // this.textBoxGlob.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxGlob.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.textBoxGlob.Location = new System.Drawing.Point(635, 8); this.textBoxGlob.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.textBoxGlob.Name = "textBoxGlob"; @@ -275,6 +276,7 @@ private void InitializeComponent() { // textBoxEncoding // this.textBoxEncoding.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxEncoding.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.textBoxEncoding.Location = new System.Drawing.Point(635, 32); this.textBoxEncoding.Name = "textBoxEncoding"; this.textBoxEncoding.Size = new System.Drawing.Size(144, 21); @@ -284,6 +286,8 @@ private void InitializeComponent() { // this.comboBoxSearchPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); + this.comboBoxSearchPath.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; + this.comboBoxSearchPath.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem; this.comboBoxSearchPath.FormattingEnabled = true; this.comboBoxSearchPath.Location = new System.Drawing.Point(103, 8); this.comboBoxSearchPath.MaxDropDownItems = 16; @@ -295,6 +299,7 @@ private void InitializeComponent() { // this.comboBoxSearchPattern.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); + this.comboBoxSearchPattern.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest; this.comboBoxSearchPattern.FormattingEnabled = true; this.comboBoxSearchPattern.Location = new System.Drawing.Point(103, 32); this.comboBoxSearchPattern.MaxDropDownItems = 16;