Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Jenne
070dbe5fe3 Version 2.0.0.11 2020-06-17 11:22:04 +02:00
Jonathan Jenne
b9a9554d41 fix buttons not being enabled 2020-06-17 11:21:25 +02:00
2 changed files with 8 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("Clipboard Watcher")>
<Assembly: AssemblyCopyright("Copyright ©2020")>
<Assembly: AssemblyTrademark("20010")>
<Assembly: AssemblyTrademark("20011")>
<Assembly: ComVisible(False)>
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.0.0.10")>
<Assembly: AssemblyVersion("2.0.0.11")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -448,8 +448,6 @@ Public Class frmAdministration
Try
Select Case oTabName
Case TabPageProcessAssignment.Name
CtrlApplicationAssignment1.Process_Load(PROFILE_IDTextBox.Text)
RibbonGroup_Profile.Enabled = False
RibbonGroup_Process.Enabled = True
@@ -843,4 +841,10 @@ Public Class frmAdministration
MemoEdit4.Text &= oItem.Value
End If
End Sub
Private Sub TBCW_PROFILESBindingSource_CurrentChanged(sender As Object, e As EventArgs) Handles TBCW_PROFILESBindingSource.CurrentChanged
If PROFILE_IDTextBox.Text <> String.Empty Then
CtrlApplicationAssignment1.Process_Load(PROFILE_IDTextBox.Text)
End If
End Sub
End Class