看一下你单元格最大显示多少字?如10个,然后用LEN()来判断长度,如:len(rs("title"))
if len(rs("title")) >10 then rstitle=left(rs("title"),10) & "..." ,left()来取从左开始的10个else rstitle=rs("title")end if