关于VB中循环问题
Dim ds As DataTable = SQLHelperLib.SQLHelper.ExecuteDt(String.Format("select FlowSort from Flowset where TableName='GuideBook' and charindex(','+ltrim('" + oLoginInfo.UserName + "')+',',','+FlowUser+',')>0", oLoginInfo.UserName))
(dataTable或者DataSet)怎么用for循环来 判断每一次循环的结果 如果是就执行相关的程序 不是则进入到下一个判断 在线等 各位速度解决 马上给分
[解决办法]
Dim datatable1 As New DataTable
For Each aaa As DataRow In datatable1.Rows
Next
[解决办法]
if Not ds is Nothing then
if ds.rows.count>0 then
for i as integer=0 to ds.rows.count-1
ds.rows(i).item("") ' 这就可以取数据了
next
endif
endIF