我们如何检查表格备注字段中的值,我已经尝试过下面提到的代码,请仔细阅读代码并建议我使用适当的代码,提前谢谢!
Local nCount
Create Cursor mycursor(RecordS c(50))
IFExists=.F.
For nCount = 0 To Thisform.list3.ListCount
Append Blank
Replace RecordS With Alltrim(Thisform.list3.List(nCount))
IFExists=.T.
Endfor
Delete From mycursor Where RecordS==""
If Alltrim(RecordS) == Alltrim(inv.tags)
Messagebox("Succeeded")
Else
Messagebox("Failed")
Endif