首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

关于VB中循环有关问题

2012-04-25 
关于VB中循环问题Dim ds As DataTable SQLHelperLib.SQLHelper.ExecuteDt(String.Format(select FlowSo

关于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

热点排行