Fakt, Kundenblattansicht

This commit is contained in:
2025-06-25 09:26:32 +02:00
parent f1698f8ee3
commit 2731c4be17
4 changed files with 552 additions and 546 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -3,6 +3,7 @@ Imports System.ComponentModel
Imports System.Reflection Imports System.Reflection
Imports javax.xml.bind.annotation Imports javax.xml.bind.annotation
Imports VERAG_PROG_ALLGEMEIN Imports VERAG_PROG_ALLGEMEIN
Imports System.Globalization
Public Class frmKundenblatt Public Class frmKundenblatt
@@ -2139,7 +2140,9 @@ Public Class frmKundenblatt
If i > 1 Then If i > 1 Then
.Columns(i).Width = 75 .Columns(i).Width = 75
.Columns(i).DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter .Columns(i).DefaultCellStyle.Format = "c2"
.Columns(i).DefaultCellStyle.FormatProvider = CultureInfo.GetCultureInfo("de-DE")
.Columns(i).DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleRight
End If End If
Next Next

View File

@@ -33,7 +33,7 @@ Partial Class usrcntlFakturierung
Me.Label61 = New System.Windows.Forms.Label() Me.Label61 = New System.Windows.Forms.Label()
Me.GBMautberichte = New System.Windows.Forms.GroupBox() Me.GBMautberichte = New System.Windows.Forms.GroupBox()
Me.TextBox1 = New System.Windows.Forms.TextBox() Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.MyDatagridview1 = New VERAG_PROG_ALLGEMEIN.MyDatagridview(Me.components) Me.dgvMautbericht = New VERAG_PROG_ALLGEMEIN.MyDatagridview(Me.components)
Me.Label5 = New System.Windows.Forms.Label() Me.Label5 = New System.Windows.Forms.Label()
Me.lblAnzahlMautberichte = New System.Windows.Forms.Label() Me.lblAnzahlMautberichte = New System.Windows.Forms.Label()
Me.pbMautAnh_Proz = New System.Windows.Forms.ProgressBar() Me.pbMautAnh_Proz = New System.Windows.Forms.ProgressBar()
@@ -101,7 +101,7 @@ Partial Class usrcntlFakturierung
Me.btnWikiStatusmails = New System.Windows.Forms.Button() Me.btnWikiStatusmails = New System.Windows.Forms.Button()
Me.GroupBox1.SuspendLayout() Me.GroupBox1.SuspendLayout()
Me.GBMautberichte.SuspendLayout() Me.GBMautberichte.SuspendLayout()
CType(Me.MyDatagridview1, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.dgvMautbericht, System.ComponentModel.ISupportInitialize).BeginInit()
Me.GBSammelrechnung.SuspendLayout() Me.GBSammelrechnung.SuspendLayout()
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -200,7 +200,7 @@ Partial Class usrcntlFakturierung
'GBMautberichte 'GBMautberichte
' '
Me.GBMautberichte.Controls.Add(Me.TextBox1) Me.GBMautberichte.Controls.Add(Me.TextBox1)
Me.GBMautberichte.Controls.Add(Me.MyDatagridview1) Me.GBMautberichte.Controls.Add(Me.dgvMautbericht)
Me.GBMautberichte.Controls.Add(Me.Label5) Me.GBMautberichte.Controls.Add(Me.Label5)
Me.GBMautberichte.Controls.Add(Me.lblAnzahlMautberichte) Me.GBMautberichte.Controls.Add(Me.lblAnzahlMautberichte)
Me.GBMautberichte.Controls.Add(Me.pbMautAnh_Proz) Me.GBMautberichte.Controls.Add(Me.pbMautAnh_Proz)
@@ -227,15 +227,15 @@ Partial Class usrcntlFakturierung
Me.TextBox1.Size = New System.Drawing.Size(106, 13) Me.TextBox1.Size = New System.Drawing.Size(106, 13)
Me.TextBox1.TabIndex = 105 Me.TextBox1.TabIndex = 105
' '
'MyDatagridview1 'dgvMautbericht
' '
Me.MyDatagridview1.AKTUALISIERUNGS_INTERVALL = -1 Me.dgvMautbericht.AKTUALISIERUNGS_INTERVALL = -1
Me.MyDatagridview1.BackgroundColor = System.Drawing.SystemColors.Window Me.dgvMautbericht.BackgroundColor = System.Drawing.SystemColors.Window
Me.MyDatagridview1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvMautbericht.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.MyDatagridview1.Location = New System.Drawing.Point(4, 71) Me.dgvMautbericht.Location = New System.Drawing.Point(4, 71)
Me.MyDatagridview1.Name = "MyDatagridview1" Me.dgvMautbericht.Name = "dgvMautbericht"
Me.MyDatagridview1.Size = New System.Drawing.Size(471, 135) Me.dgvMautbericht.Size = New System.Drawing.Size(471, 135)
Me.MyDatagridview1.TabIndex = 34 Me.dgvMautbericht.TabIndex = 34
' '
'Label5 'Label5
' '
@@ -958,7 +958,7 @@ Partial Class usrcntlFakturierung
Me.GroupBox1.ResumeLayout(False) Me.GroupBox1.ResumeLayout(False)
Me.GBMautberichte.ResumeLayout(False) Me.GBMautberichte.ResumeLayout(False)
Me.GBMautberichte.PerformLayout() Me.GBMautberichte.PerformLayout()
CType(Me.MyDatagridview1, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.dgvMautbericht, System.ComponentModel.ISupportInitialize).EndInit()
Me.GBSammelrechnung.ResumeLayout(False) Me.GBSammelrechnung.ResumeLayout(False)
Me.GBSammelrechnung.PerformLayout() Me.GBSammelrechnung.PerformLayout()
CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.PictureBox6, System.ComponentModel.ISupportInitialize).EndInit()
@@ -981,7 +981,7 @@ Partial Class usrcntlFakturierung
Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents Label61 As Label Friend WithEvents Label61 As Label
Friend WithEvents GBMautberichte As GroupBox Friend WithEvents GBMautberichte As GroupBox
Friend WithEvents MyDatagridview1 As VERAG_PROG_ALLGEMEIN.MyDatagridview Friend WithEvents dgvMautbericht As VERAG_PROG_ALLGEMEIN.MyDatagridview
Friend WithEvents lblAnzahlMautberichte As Label Friend WithEvents lblAnzahlMautberichte As Label
Friend WithEvents cbxDateMautbericht As VERAG_PROG_ALLGEMEIN.MyComboBox Friend WithEvents cbxDateMautbericht As VERAG_PROG_ALLGEMEIN.MyComboBox
Friend WithEvents Label69 As Label Friend WithEvents Label69 As Label

View File

@@ -1724,7 +1724,7 @@ Public Class usrcntlFakturierung
dtSummen.Rows.InsertAt(drLast, dtSummen.Rows.Count) dtSummen.Rows.InsertAt(drLast, dtSummen.Rows.Count)
With MyDatagridview1 With dgvMautbericht
.Columns.Clear() .Columns.Clear()