P
PuckInLA
I have a question. I have some data that I am pulling into a dataset
that needs to have each row of data emailed out. I got the email
funciton working great but its extracting that data that is becoming
the problem. I assume it would be in a loop, and to do that I am
guessing something like this:
for each item in dataset
extact row
email rowinfo
for next
(my theoritical coding practices, pardon me
Does anyone have an idea how i can do this?
Dim i As Integer
Dim strContainerID As String
Dim num As Integer =
Me.BindingContext(dgNewContainer.DataSource).Count
strContainerID = num
lblToday.Text = strContainerID
--->>> I want to pull a cell value out of a column to email it here
For i = 0 To num - 1
Next
End Sub
that needs to have each row of data emailed out. I got the email
funciton working great but its extracting that data that is becoming
the problem. I assume it would be in a loop, and to do that I am
guessing something like this:
for each item in dataset
extact row
email rowinfo
for next
(my theoritical coding practices, pardon me
Does anyone have an idea how i can do this?
Dim i As Integer
Dim strContainerID As String
Dim num As Integer =
Me.BindingContext(dgNewContainer.DataSource).Count
strContainerID = num
lblToday.Text = strContainerID
--->>> I want to pull a cell value out of a column to email it here
For i = 0 To num - 1
Next
End Sub