fix frmIndexFileList delete all files

This commit is contained in:
Jonathan Jenne
2020-02-11 16:04:33 +01:00
parent 1fbfa0b1ee
commit 96be54aab4
3 changed files with 99 additions and 27 deletions

View File

@@ -35,6 +35,7 @@ Partial Class frmIndexFileList
Me.TableAdapterManager = New Global_Indexer.MyDatasetTableAdapters.TableAdapterManager()
Me.Button2 = New System.Windows.Forms.Button()
Me.btnstartIndex = New System.Windows.Forms.Button()
Me.btnCancel = New System.Windows.Forms.Button()
Me.Panel1.SuspendLayout()
CType(Me.CheckedListBoxControl1, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBGI_FILES_USERBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -116,13 +117,22 @@ Partial Class frmIndexFileList
Me.btnstartIndex.Name = "btnstartIndex"
Me.btnstartIndex.UseVisualStyleBackColor = True
'
'btnCancel
'
resources.ApplyResources(Me.btnCancel, "btnCancel")
Me.btnCancel.Image = Global.Global_Indexer.My.Resources.Resources.cancel
Me.btnCancel.Name = "btnCancel"
Me.btnCancel.UseVisualStyleBackColor = True
'
'frmIndexFileList
'
resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ControlBox = False
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.CheckedListBoxControl1)
Me.Controls.Add(Me.btnCancel)
Me.Controls.Add(Me.btnstartIndex)
Me.Controls.Add(Me.Panel1)
Me.MaximizeBox = False
@@ -148,4 +158,5 @@ Partial Class frmIndexFileList
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Label2 As Label
Friend WithEvents btnCancel As Button
End Class