以文本方式查看主题
- Foxtable(狐表) (http://foxtable.com/bbs/index.asp)
-- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2)
---- 关于列名称的代码求助 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=146053)
|
-- 作者:hongye
-- 发布时间:2020/2/15 10:51:00
-- 关于列名称的代码求助
For i As Integer = 0 To Tables("表A").Cols.Count - 1 Dim hmc As String hmc = Tables("表A").Cols(i).Name vr.ToolTipText = hmc & ":" & dr(hmc) & "|" Next
我的想法是集合表A的列,在鼠标停留在ListView所在的行vr.ToolTipText显示表A当前行的数据 请问这个代码怎么写?
|
-- 作者:有点蓝
-- 发布时间:2020/2/15 11:07:00
--
dim s as stringFor i As Integer = 0 To Tables("表A").Cols.Count - 1 Dim hmc As String hmc = Tables("表A").Cols(i).Name s = s & "|" & hmc & ":" & dr(hmc) Next vr.ToolTipText = s.trim("|")
|
-- 作者:hongye
-- 发布时间:2020/2/15 11:40:00
--
那有什么办法在鼠标移到本行任意一个地方都能让ListView显示内容呢
|
-- 作者:有点蓝
-- 发布时间:2020/2/15 13:08:00
--
没看懂,截图说明一下
|
-- 作者:hongye
-- 发布时间:2020/2/15 13:27:00
--
现在的情况是鼠标移到数据行的第一列这里才会显示vr.ToolTipTex的数据,但是如果鼠标移到其他本行的位置则不显示vr.ToolTipTex的数据
|
-- 作者:hongye
-- 发布时间:2020/2/15 13:32:00
--
此主题相关图片如下:02.jpg
此主题相关图片如下:01.jpg
|
-- 作者:hongye
-- 发布时间:2020/2/15 13:33:00
--
也就是现在只有鼠标移到项目名称里才有显示,其他列没有显示
|
-- 作者:有点蓝
-- 发布时间:2020/2/15 13:42:00
--
这个暂时没有办法
|
-- 作者:hongye
-- 发布时间:2020/2/15 14:40:00
--
Dim lvw As WinForm.ListView = e.Form.Controls("ListView1") Dim Sum As Double Dim Sum2 As Double For i As Integer = 0 To lvw.Groups.Count-1 For Each dr As WinForm.ListViewRow In lvw.Groups(i).Rows Sum = Sum + dr("金额") Next Messagebox.show("本订单成本是 " & "金额:" & Sum ,"提示",MessageBoxButtons.OK,MessageBoxIcon.Information) Next
这个怎么合计数字不对,我要的是每个分组的合计数字
|
-- 作者:有点蓝
-- 发布时间:2020/2/15 14:47:00
--
For i As Integer = 0 To lvw.Groups.Count-1 Sum = 0 For Each dr As WinForm.ListViewRow In lvw.Groups(i).Rows Sum = Sum + dr("金额") Next Messagebox.show("本订单成本是 " & "金额:" & Sum ,"提示",MessageBoxButtons.OK,MessageBoxIcon.Information) Next
|