I'm trying to give my user the ability to print multiple personell badges with one swoop. I can select multiple rows from my DataGridView object, but am having trouble looping through those rows to print my data. Here is the code that I currently have that does not work...
I'm fairly new to VB so I'm hoping that this is an easy problem for some of you more knowledgeable developers out there. Thanks in advance.
Code:
For Each group As DataGridViewSelectedRowCollection In Me.dgridContractors.SelectedRows For Each row As DataGridViewRow In group
I'm fairly new to VB so I'm hoping that this is an easy problem for some of you more knowledgeable developers out there. Thanks in advance.
Comment