以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  如何讲数值组合框的数据赋值到某一列  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=37770)

--  作者:zhangchi96
--  发布时间:2013/7/10 22:49:00
--  如何讲数值组合框的数据赋值到某一列

1、插入了数值组合框NumericComboBox按钮“金额”,用于输入数值

2、插入按钮“批量赋值”,想把上面的“金额”赋值到 “职工表”的““扣款”列

    其代码如下:

 

Dim je As WinForm.NumericComboBox = e.Form.Controls("金额")

For Each dr As DataRow In DataTables("职工表").DataRows
       dr("扣款") = je
Next

 

请各位赐教,上述代码运行出错,如何改正


--  作者:有点甜
--  发布时间:2013/7/10 22:57:00
--  

是等于控件的值,不是等于控件本身。

 

Dim je As WinForm.NumericComboBox = e.Form.Controls("金额")

For Each dr As DataRow In DataTables("职工表").DataRows
       dr("扣款") = je.Value
Next


--  作者:zhangchi96
--  发布时间:2013/7/11 17:15:00
--  

谢谢“有点甜”,感谢您抽空为我指导!