743
社区成员
发帖
与我相关
我的任务
分享//column 为字段名
string ls_str
long ll_row
ls_str = trim( sle_1.text )
if len(ls_str) > 0 then
ll_row = dw_1.find( "column = '" + sle_1.text + "'", 1, dw_1.rowcount() )
if ll_row > 0 then
dw_1.scrolltorow( ll_row )
dw_1.setfocus()
dw_1.setcolumn('clolumn')
else
mesagebox( '', '没找到' )
end if
end if
long ll_row, ll_rowcount
dw_1.SelectRow(0, FALSE)
ll_rowcount = dw_1.rowcount()
ll_row = dw_1.find("a = '"+sle_1.text+"'", 1, ll_rowcuont)
dw_1.scrollToRow(ll_row)
dw_1.SelectRow(ll_row, TRUE)