【发布时间】:2010-10-11 10:42:27
【问题描述】:
我有以下代码:
Dim i As Integer = dtResult.Rows.Count
For i = 0 To dtResult.Rows.Count Step 1
strVerse = blHelper.Highlight(dtResult.Rows(i).ToString, s)
' syntax error here
dtResult.Rows(i) = strVerse
Next
我想将strVerse 添加到当前行。
我做错了什么?
【问题讨论】: