diff --git a/Aviso/ATEZ/frmATEZ_EZA.Designer.vb b/Aviso/ATEZ/frmATEZ_EZA.Designer.vb index 805c66d..25f27f0 100644 --- a/Aviso/ATEZ/frmATEZ_EZA.Designer.vb +++ b/Aviso/ATEZ/frmATEZ_EZA.Designer.vb @@ -26,6 +26,8 @@ Partial Class frmATEZ_EZA Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmATEZ_EZA)) Me.btnSend = New System.Windows.Forms.Button() Me.pnlHead = New System.Windows.Forms.Panel() + Me.Button1 = New System.Windows.Forms.Button() + Me.Button2 = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() Me.Label4 = New System.Windows.Forms.Label() Me.lblInfo = New System.Windows.Forms.Label() @@ -41,7 +43,6 @@ Partial Class frmATEZ_EZA Me.Button3 = New System.Windows.Forms.Button() Me.Label6 = New System.Windows.Forms.Label() Me.lblAnh = New System.Windows.Forms.Label() - Me.Button1 = New System.Windows.Forms.Button() Me.btnAgg_Tnr = New System.Windows.Forms.Button() Me.Label2 = New System.Windows.Forms.Label() Me.btnAgg_Origin = New System.Windows.Forms.Button() @@ -49,7 +50,6 @@ Partial Class frmATEZ_EZA Me.btnAgg_desc = New System.Windows.Forms.Button() Me.dgvAnhaenge = New VERAG_PROG_ALLGEMEIN.MyDatagridview(Me.components) Me.columnName = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.Button2 = New System.Windows.Forms.Button() Me.btnPrio_CommInv = New System.Windows.Forms.Button() Me.Label5 = New System.Windows.Forms.Label() Me.btnPrio_eFatura = New System.Windows.Forms.Button() @@ -102,6 +102,24 @@ Partial Class frmATEZ_EZA Me.pnlHead.Size = New System.Drawing.Size(675, 151) Me.pnlHead.TabIndex = 112 ' + 'Button1 + ' + Me.Button1.Location = New System.Drawing.Point(553, 117) + Me.Button1.Name = "Button1" + Me.Button1.Size = New System.Drawing.Size(122, 23) + Me.Button1.TabIndex = 153 + Me.Button1.Text = "Clear Token Cache" + Me.Button1.UseVisualStyleBackColor = True + ' + 'Button2 + ' + Me.Button2.Location = New System.Drawing.Point(610, 96) + Me.Button2.Name = "Button2" + Me.Button2.Size = New System.Drawing.Size(65, 23) + Me.Button2.TabIndex = 158 + Me.Button2.Text = "json" + Me.Button2.UseVisualStyleBackColor = True + ' 'Label1 ' Me.Label1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) @@ -282,15 +300,6 @@ Partial Class frmATEZ_EZA Me.lblAnh.TabIndex = 151 Me.lblAnh.Visible = False ' - 'Button1 - ' - Me.Button1.Location = New System.Drawing.Point(553, 117) - Me.Button1.Name = "Button1" - Me.Button1.Size = New System.Drawing.Size(122, 23) - Me.Button1.TabIndex = 153 - Me.Button1.Text = "Clear Token Cache" - Me.Button1.UseVisualStyleBackColor = True - ' 'btnAgg_Tnr ' Me.btnAgg_Tnr.BackColor = System.Drawing.Color.DeepSkyBlue @@ -367,15 +376,6 @@ Partial Class frmATEZ_EZA Me.columnName.Name = "columnName" Me.columnName.ReadOnly = True ' - 'Button2 - ' - Me.Button2.Location = New System.Drawing.Point(610, 96) - Me.Button2.Name = "Button2" - Me.Button2.Size = New System.Drawing.Size(65, 23) - Me.Button2.TabIndex = 158 - Me.Button2.Text = "json" - Me.Button2.UseVisualStyleBackColor = True - ' 'btnPrio_CommInv ' Me.btnPrio_CommInv.BackColor = System.Drawing.Color.DeepSkyBlue @@ -452,6 +452,7 @@ Partial Class frmATEZ_EZA Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink + Me.BackColor = System.Drawing.SystemColors.InactiveBorder Me.ClientSize = New System.Drawing.Size(680, 409) Me.Controls.Add(Me.Button3) Me.Controls.Add(Me.lblAnh) diff --git a/Aviso/ATEZ/frmATEZ_EZA.vb b/Aviso/ATEZ/frmATEZ_EZA.vb index 538b8c0..a137816 100644 --- a/Aviso/ATEZ/frmATEZ_EZA.vb +++ b/Aviso/ATEZ/frmATEZ_EZA.vb @@ -820,10 +820,10 @@ Public Class frmATEZ_EZA End Sub Private Sub Buttonprio_Click(sender As Object, e As EventArgs) Handles btnPrio_CommInv.Click, btnPrio_ftz.Click, btnPrio_eFatura.Click, btnPrio_Export.Click - If sender Is Not btnPrio_CommInv.Tag Then btnPrio_CommInv.Tag = 0 : btnPrio_CommInv.BackColor = SystemColors.Control - If sender Is Not btnPrio_eFatura.Tag Then btnPrio_eFatura.Tag = 0 : btnPrio_eFatura.BackColor = SystemColors.Control - If sender Is Not btnPrio_Export.Tag Then btnPrio_Export.Tag = 0 : btnPrio_Export.BackColor = SystemColors.Control - If sender Is Not btnPrio_ftz.Tag Then btnPrio_ftz.Tag = 0 : btnPrio_ftz.BackColor = SystemColors.Control + If sender IsNot btnPrio_CommInv Then btnPrio_CommInv.Tag = 0 : btnPrio_CommInv.BackColor = SystemColors.Control + If sender IsNot btnPrio_eFatura Then btnPrio_eFatura.Tag = 0 : btnPrio_eFatura.BackColor = SystemColors.Control + If sender IsNot btnPrio_Export Then btnPrio_Export.Tag = 0 : btnPrio_Export.BackColor = SystemColors.Control + If sender IsNot btnPrio_ftz Then btnPrio_ftz.Tag = 0 : btnPrio_ftz.BackColor = SystemColors.Control If sender.Tag = 0 Then @@ -833,5 +833,5 @@ Public Class frmATEZ_EZA sender.Tag = 0 sender.BackColor = SystemColors.Control End If - End Sub -End Class \ No newline at end of file + End Sub + End Class \ No newline at end of file