This commit is contained in:
2022-04-01 10:19:43 +02:00
parent 5de08b2c2d
commit 29b837938d
5 changed files with 59 additions and 43 deletions

View File

@@ -157,7 +157,7 @@ Public Class frmSQL_DESIGNER
Dim ds As DataSet = ExecuteWithConnection(cmbConnection.SelectedValue, query)
If ds IsNot Nothing Then
dgvResult.DataSource = ds.Tables(0)
GridControl1.DataSource = ds.Tables(0)
End If
End Sub
@@ -290,4 +290,8 @@ Public Class frmSQL_DESIGNER
Private Sub cmbConnection_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmbConnection.SelectedIndexChanged
End Sub
Private Sub Label1_Click(sender As Object, e As EventArgs) Handles Label1.Click
End Sub
End Class