w_ue_pt_alter_dscrp.srw 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. $PBExportHeader$w_ue_pt_alter_dscrp.srw
  2. forward
  3. global type w_ue_pt_alter_dscrp from window
  4. end type
  5. type cb_2 from commandbutton within w_ue_pt_alter_dscrp
  6. end type
  7. type cb_1 from commandbutton within w_ue_pt_alter_dscrp
  8. end type
  9. type sle_1 from singlelineedit within w_ue_pt_alter_dscrp
  10. end type
  11. end forward
  12. global type w_ue_pt_alter_dscrp from window
  13. integer width = 1673
  14. integer height = 336
  15. boolean titlebar = true
  16. string title = "请输入批修改备注"
  17. boolean controlmenu = true
  18. windowtype windowtype = response!
  19. long backcolor = 67108864
  20. string icon = "AppIcon!"
  21. boolean center = true
  22. cb_2 cb_2
  23. cb_1 cb_1
  24. sle_1 sle_1
  25. end type
  26. global w_ue_pt_alter_dscrp w_ue_pt_alter_dscrp
  27. type variables
  28. string ls_dscrp=''
  29. end variables
  30. on w_ue_pt_alter_dscrp.create
  31. this.cb_2=create cb_2
  32. this.cb_1=create cb_1
  33. this.sle_1=create sle_1
  34. this.Control[]={this.cb_2,&
  35. this.cb_1,&
  36. this.sle_1}
  37. end on
  38. on w_ue_pt_alter_dscrp.destroy
  39. destroy(this.cb_2)
  40. destroy(this.cb_1)
  41. destroy(this.sle_1)
  42. end on
  43. event close;CloseWithReturn(this,ls_dscrp)
  44. end event
  45. type cb_2 from commandbutton within w_ue_pt_alter_dscrp
  46. integer x = 1019
  47. integer y = 120
  48. integer width = 402
  49. integer height = 116
  50. integer taborder = 30
  51. integer textsize = -9
  52. integer weight = 400
  53. fontcharset fontcharset = gb2312charset!
  54. fontpitch fontpitch = variable!
  55. string facename = "宋体"
  56. string text = "取消"
  57. end type
  58. event clicked;close(parent)
  59. end event
  60. type cb_1 from commandbutton within w_ue_pt_alter_dscrp
  61. integer x = 215
  62. integer y = 120
  63. integer width = 402
  64. integer height = 116
  65. integer taborder = 20
  66. integer textsize = -9
  67. integer weight = 400
  68. fontcharset fontcharset = gb2312charset!
  69. fontpitch fontpitch = variable!
  70. string facename = "宋体"
  71. string text = "确定"
  72. end type
  73. event clicked;ls_dscrp=trim(sle_1.text)
  74. close(parent)
  75. end event
  76. type sle_1 from singlelineedit within w_ue_pt_alter_dscrp
  77. integer x = 18
  78. integer width = 1632
  79. integer height = 100
  80. integer taborder = 10
  81. integer textsize = -9
  82. integer weight = 400
  83. fontcharset fontcharset = gb2312charset!
  84. fontpitch fontpitch = variable!
  85. string facename = "宋体"
  86. long textcolor = 33554432
  87. borderstyle borderstyle = stylelowered!
  88. end type