以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]如何将listview中选定的行内容输入到表中  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=158040)

--  作者:shming
--  发布时间:2020/11/5 17:52:00
--  [求助]如何将listview中选定的行内容输入到表中
请问大师:
如何将listview中选定的行内容输入到表中(可能是一行或多行)


--  作者:有点蓝
--  发布时间:2020/11/5 20:09:00
--  
遍历选中的行:http://www.foxtable.com/webhelp/topics/2850.htm

Dim lvw As WinForm.ListView = e.Form.Controls("ListView1")
For Each 
vr As WinForm.ListViewRow In lvw.SelectedRows
dim r as row = tables("表A").addnew
  r("第一列")
 = vr("国家")
Next

--  作者:shming
--  发布时间:2020/11/10 16:22:00
--  
十分感谢,在您指导下,此问题已解决