D
David C
How do I know what the ordinal value is in a FormView? For example, a
GridView is 0,1,2,3, etc based on the left-to-right cells. I want to refer
to them in order for a subroutine like example below:
If Convert.ToString(oldValues(0)) <> Convert.ToString(newValues(0))
Then
'Run function in DBClass module to update or create subfile
folder
txtMsg.Text =
DBClass.MaintainSubfolders(Convert.ToString(newValues(0)),
Convert.ToString(oldValues(0)), Convert.ToString(newValues(1)),
Convert.ToString(oldValues(1)), CLng(txtFileNumber.Text))
txtMsg.Visible = True
End If
Thanks.
-David
GridView is 0,1,2,3, etc based on the left-to-right cells. I want to refer
to them in order for a subroutine like example below:
If Convert.ToString(oldValues(0)) <> Convert.ToString(newValues(0))
Then
'Run function in DBClass module to update or create subfile
folder
txtMsg.Text =
DBClass.MaintainSubfolders(Convert.ToString(newValues(0)),
Convert.ToString(oldValues(0)), Convert.ToString(newValues(1)),
Convert.ToString(oldValues(1)), CLng(txtFileNumber.Text))
txtMsg.Visible = True
End If
Thanks.
-David