如何将mshflexgrid中的所有记录显示到textbox中
请问,如何将mshflexgrid中的所有记录显示到textbox中? 要祥细。谢谢
[解决办法]
with hflexgrid
textbox1.text=""
for i=0 to .rows-1
textbox1.text=textbox1.text & .textmatrix(i,0)
next i
end with