在我的数据表中,我有一列是:
With colA
.DataType = System.Type.GetType("System.String")
.ColumnName = "colA"
End With
我有一个名为 strTest 的字符串数组,strTest(6( 是 "00"。
我尝试这样做:
colA.Expression = strTest(6)
没有错误,但代替将值设置为"00",它写"0"。
我的错误在哪里?
谢谢:)
它将表达式评估为常数。 相反,使用单引号,它会知道它是一个字符串。
colA.Expression = "'" & strTest(6) & "'"