12345678910111213141516171819202122232425262728293031323334353637 |
- $PBExportHeader$w_rpt_table.srw
- $PBExportComments$表或视图名设置 -- 窗口
- forward
- global type w_rpt_table from w_rpt_1dw
- end type
- end forward
- global type w_rpt_table from w_rpt_1dw
- end type
- global w_rpt_table w_rpt_table
- on w_rpt_table.create
- call super::create
- end on
- on w_rpt_table.destroy
- call super::destroy
- if IsValid(MenuID) then destroy(MenuID)
- end on
- event open;call super::open;dw1.settaborder(2,10)
- dw1.settaborder(1,20)
- uo_1.of_bott()
- end event
- type dw1 from w_rpt_1dw`dw1 within w_rpt_table
- int Y=228
- int Width=2098
- boolean BringToTop=true
- string DataObject="dw_rpt_table"
- end type
- type uo_1 from w_rpt_1dw`uo_1 within w_rpt_table
- boolean BringToTop=true
- end type
|