newease 发表于 2009-8-13 09:58:25

允许从空的非字符字段跳离

下面这段DataWindow的ItemError事件脚本,将允许非字符字段为空并移到下一列。
它对所有的DataWindow有效。

string s

s = this.dwDescribe(this.GetColumnName()+".coltype")
//s = this.dwDescribe("#"+String(this.GetColumn())+".coltype")

CHOOSE CASE s
CASE "number"
    IF Trim(this.GetText()) = "" THEN
      int null_num
      SetNull(null_num)
      this.SetItem(this.GetRow(),this.GetColumn(),null_num)
      this.SetActionCode(3)
    END IF
CASE "date"
    IF Trim(this.GetText()) = "" THEN
      date null_date
      SetNull(null_date)
      this.SetItem(this.GetRow(),this.GetColumn(),null_date)
      this.SetActionCode(3)
    END IF
CASE "time"
    IF Trim(this.GetText()) = "" THEN
      time null_time
      SetNull(null_time)
      this.SetItem(this.GetRow(),this.GetColumn(),null_time)
      this.SetActionCode(3)
    END IF
CASE "datetime"
    IF Trim(this.GetText()) = "" THEN
      date null_datetime
      SetNull(null_datetime)
      this.SetItem(this.GetRow(),this.GetColumn(),null_datetime)
      this.SetActionCode(3)
    END IF
END CHOOSE
页: [1]
查看完整版本: 允许从空的非字符字段跳离

免责声明:
本站所发布的一切破解补丁、注册机和注册信息及软件的解密分析文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如有侵权请邮件与我们联系处理。

Mail To:Admin@SybaseBbs.com