Skip to content

Instantly share code, notes, and snippets.

@Hedgehogs1974
Last active June 14, 2023 13:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hedgehogs1974/7640c0d8124101fcc2f8ba3652d32658 to your computer and use it in GitHub Desktop.
Save Hedgehogs1974/7640c0d8124101fcc2f8ba3652d32658 to your computer and use it in GitHub Desktop.
Dim i As Integer = 0
For Each row In dsDetail.Tables(0).Rows
Dim form As New DetailForm With {
.TopLevel = False,
.Size = New Size(1048, 58),
.Location = New Point(0, i * 57)
}
pnlDetail.Controls.Add(form)
form.Show()
form.BringToFront()
i += 1
Next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment