Add Search & Home Form + Attached Panels

This commit is contained in:
Jonathan Jenne
2019-03-07 16:45:30 +01:00
parent 4a7f0cd85d
commit 3ee971fd14
15 changed files with 850 additions and 326 deletions

View File

@@ -0,0 +1,24 @@
Imports DevExpress.XtraGrid
Imports DevExpress.XtraTreeList
Public Class frmHome
Private Sub frmInbox_Load(sender As Object, e As EventArgs) Handles Me.Load
Dim oCommonCommands As New ClassCommonCommands(My.LogConfig)
Dim oGridPatcher As New ClassControlPatcher(Of GridControl)(Me)
oGridPatcher.
ProcessContainer(AddressOf GridControlDefaults.DefaultGridSettings).
ProcessContainer(AddressOf GridControlDefaults.ReadOnlyGridSettings)
Dim oTreeListPatcher As New ClassControlPatcher(Of TreeList)(Me)
oTreeListPatcher.
ProcessContainer(AddressOf TreeListDefaults.DefaultTreeListSettings)
Dim oSQL As String = "SELECT * FROM VWICM_DOC_METADATA_DE;"
My.Channel.CreateDatabaseRequest("Doc Metadata", True)
Dim oTable = My.Channel.ReturnDatatable(oSQL)
My.Channel.CloseDatabaseRequest()
GridControl1.DataSource = oTable.Table
End Sub
End Class