Foxtable(狐表)用户栏目专家坐堂 → 求助表事件该如何写?


  共有4209人关注过本帖树形打印复制链接

主题:求助表事件该如何写?

帅哥哟,离线,有人找我吗?
yan2006l
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:一尾狐 帖子:431 积分:3214 威望:0 精华:2 注册:2011/9/10 21:35:00
  发帖心情 Post By:2014/2/4 1:28:00 [显示全部帖子]

写在datachanged事件里

if e.dcol.name = 工序 or e.dcol.name = 型号 then  ‘如果这两个列随便哪个发生变化,都将重新计算工价,以下为重算代码

  

 

     dim gx = e.drow("工序")  ’获得新的工序值

     dim xh = e.drow("型号")  '获得新的型号值

     dim gj = e.drow("工价")   '将要计算并生成的新的工价

    

     select case gx  ’先区分工序是什么

     case 打磨         '针对打磨工序的计算

      if xh > 值1 then

      gj = 答案1

      elseif xh > 值2 and xh < 值3 then

      gj = 答案2

      elseif xh....... then

      gj =

      else

      gj =

      end if

 

     case 冲压  '这里同上略

      if xh > 值1 then

      gj =

      elseif xh > 值2 and xh < 值3 then

      gj =

      elseif xh....... then

      gj =

      else

      gj =

      end if


 回到顶部