TestGUI: update test gui
This commit is contained in:
15
Controls.SQLEditor/frmSQLResult.vb
Normal file
15
Controls.SQLEditor/frmSQLResult.vb
Normal file
@@ -0,0 +1,15 @@
|
||||
Public Class frmSQLResult
|
||||
Private ReadOnly Table As DataTable
|
||||
|
||||
Public Sub New(pTable As DataTable)
|
||||
' Dieser Aufruf ist für den Designer erforderlich.
|
||||
InitializeComponent()
|
||||
|
||||
' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
|
||||
Table = pTable
|
||||
End Sub
|
||||
|
||||
Private Sub frmSQLResult_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
GridControlResult.DataSource = Table
|
||||
End Sub
|
||||
End Class
|
||||
Reference in New Issue
Block a user