1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- $PBExportHeader$w_testwindow.srw
- forward
- global type w_testwindow from window
- end type
- type dw_1 from datawindow within w_testwindow
- end type
- end forward
- global type w_testwindow from window
- integer width = 3803
- integer height = 1584
- boolean titlebar = true
- string title = "Untitled"
- boolean controlmenu = true
- boolean minbox = true
- boolean maxbox = true
- boolean resizable = true
- windowtype windowtype = popup!
- long backcolor = 67108864
- string icon = "AppIcon!"
- boolean center = true
- dw_1 dw_1
- end type
- global w_testwindow w_testwindow
- on w_testwindow.create
- this.dw_1=create dw_1
- this.Control[]={this.dw_1}
- end on
- on w_testwindow.destroy
- destroy(this.dw_1)
- end on
- type dw_1 from datawindow within w_testwindow
- integer x = 69
- integer y = 32
- integer width = 2571
- integer height = 1325
- integer taborder = 10
- boolean titlebar = true
- string title = "none"
- boolean controlmenu = true
- boolean minbox = true
- boolean maxbox = true
- boolean hscrollbar = true
- boolean vscrollbar = true
- boolean resizable = true
- boolean hsplitscroll = true
- boolean livescroll = true
- borderstyle borderstyle = stylelowered!
- end type
|