Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. Dim dialog As New OutputBox("Info")
  2. dialog.Width = 300
  3. dialog.textBox.Text = "Waiting..."
  4. dialog.Show()
  5.  
  6. For Each row As DataGridViewRow In Dgv1.Rows
  7. dialog.textBox.AppendText("Row number " & row.Index & " at " & Date.Now.ToLongTimeString & Environment.NewLine)
  8. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement