项目中datawindow一般需要开启的服务

在一般的项目中我们常常需要在datawindow的construtor中初始化一些服务,

如下面的例子:

 

this.of_setupdateable(False)//是否可更新
this.of_settransobject(sqlca)//建立事务连接
this.of_setfilter(true)//设置过滤
this.inv_filter.of_setstyle(2)//设置过滤风格
this.of_setfind(true)//设置查询
this.of_setsort(true)//设置排序
this.inv_sort.of_setstyle(1)//设置排序风格
inv_sort.of_SetColumnHeader(TRUE)//设置表头
this.of_setrowselect(true)//设置行选择
this.of_setprintpreview(true)//打印预览

this.ib_rmbmenu = False//右键

this.of_setdropdownfilter(true)//下拉过滤
this.inv_dropdownfilter.of_register()//下拉过滤实例化

你可能感兴趣的:(window)