This commit is contained in:
SchreiberM
2015-09-29 12:16:23 +02:00
parent 379a63d9a8
commit 80247e18dd
31 changed files with 1808 additions and 524 deletions

View File

@@ -0,0 +1,8 @@
Public Class frmSQL_Result
Private Sub frmSQL_Result_Load(sender As Object, e As EventArgs) Handles Me.Load
txtSQLCommand.Text = CURRENT_SQLRESULT
Me.BindingSource1.DataSource = DTSQL_RESULT
DataGridView1.DataSource = DTSQL_RESULT
End Sub
End Class