Compare commits
4 Commits
74049888b6
...
92bc4c37c7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92bc4c37c7 | ||
|
|
46b120d3bd | ||
|
|
9c4a7057e5 | ||
|
|
48274219c9 |
@ -66,7 +66,7 @@ Public Class DocumentViewer
|
|||||||
Private Sub DocumentViewer_Load(sender As Object, e As EventArgs) Handles Me.Load
|
Private Sub DocumentViewer_Load(sender As Object, e As EventArgs) Handles Me.Load
|
||||||
UpdateMainUi()
|
UpdateMainUi()
|
||||||
End Sub
|
End Sub
|
||||||
|
'hallo
|
||||||
Public Class ToolbarSettings
|
Public Class ToolbarSettings
|
||||||
Public Property ShowPrintButton As Boolean = True
|
Public Property ShowPrintButton As Boolean = True
|
||||||
Public Property ShowFitWidthButton As Boolean = True
|
Public Property ShowFitWidthButton As Boolean = True
|
||||||
|
|||||||
@ -98,10 +98,16 @@ Public Class frmLookupGrid
|
|||||||
_View.BestFitColumns()
|
_View.BestFitColumns()
|
||||||
|
|
||||||
' Datenspalte zusätzlich in der Breite anpassen
|
' Datenspalte zusätzlich in der Breite anpassen
|
||||||
If _View.Columns.Count = 0 Then
|
Try
|
||||||
Dim oDataColumn As GridColumn = _View.Columns.Item(_DataColumn)
|
If _View.Columns.Count = 0 Then
|
||||||
oDataColumn.BestFit()
|
Dim oDataColumn As GridColumn = _View.Columns.Item(_DataColumn)
|
||||||
End If
|
oDataColumn.BestFit()
|
||||||
|
End If
|
||||||
|
Catch ex As ArgumentOutOfRangeException
|
||||||
|
|
||||||
|
Catch ex As Exception
|
||||||
|
|
||||||
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
Private Sub frmLookupGrid_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
Private Sub frmLookupGrid_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
||||||
BringToFront()
|
BringToFront()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user