主题:表格读取值为何出错?
For i = 1 To MSHFlexGrid1.Rows - 1
strSql = "delete from SICProject where 1=1 "
If MSHFlexGrid1.TextMatrix(i, 1) <> "" Then
strSql = strSql & " and fid=MSHFlexGrid1.TextMatrix(i, 1) "
EXEC Conn, strSql
End If
Next
为何 MSHFlexGrid1.TextMatrix(i, 1) 返回 empty?