w_fx_refuse_reason_edit.srw 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. $PBExportHeader$w_fx_refuse_reason_edit.srw
  2. $PBExportComments$拒绝原因编辑
  3. forward
  4. global type w_fx_refuse_reason_edit from w_publ_base
  5. end type
  6. type mle_1 from multilineedit within w_fx_refuse_reason_edit
  7. end type
  8. end forward
  9. global type w_fx_refuse_reason_edit from w_publ_base
  10. integer y = 388
  11. string title = "请输入拒绝原因"
  12. boolean minbox = false
  13. windowtype windowtype = response!
  14. long backcolor = 16777215
  15. string icon = "graphics\chain_link_128px.ico"
  16. boolean center = true
  17. mle_1 mle_1
  18. end type
  19. global w_fx_refuse_reason_edit w_fx_refuse_reason_edit
  20. type variables
  21. s_open_packet s_tran
  22. end variables
  23. on w_fx_refuse_reason_edit.create
  24. int iCurrent
  25. call super::create
  26. this.mle_1=create mle_1
  27. iCurrent=UpperBound(this.Control)
  28. this.Control[iCurrent+1]=this.mle_1
  29. end on
  30. on w_fx_refuse_reason_edit.destroy
  31. call super::destroy
  32. destroy(this.mle_1)
  33. end on
  34. event open;call super::open;s_tran.returnflag = 0
  35. string msg
  36. msg = Message.StringParm
  37. if not IsNull(msg) then
  38. mle_1.Text = msg
  39. end if
  40. end event
  41. event close;call super::close;closewithreturn(this, s_tran)
  42. end event
  43. type cb_func from w_publ_base`cb_func within w_fx_refuse_reason_edit
  44. integer x = 691
  45. integer y = 947
  46. string text = "确定"
  47. end type
  48. event cb_func::clicked;call super::clicked;s_tran.returnflag = 1
  49. s_tran.postscript = mle_1.Text
  50. close(parent)
  51. end event
  52. type cb_exit from w_publ_base`cb_exit within w_fx_refuse_reason_edit
  53. integer x = 1006
  54. integer y = 947
  55. end type
  56. type mle_1 from multilineedit within w_fx_refuse_reason_edit
  57. integer width = 1997
  58. integer height = 928
  59. integer taborder = 10
  60. boolean bringtotop = true
  61. integer textsize = -9
  62. integer weight = 400
  63. fontcharset fontcharset = gb2312charset!
  64. fontpitch fontpitch = variable!
  65. string facename = "宋体"
  66. long textcolor = 33554432
  67. boolean vscrollbar = true
  68. borderstyle borderstyle = stylelowered!
  69. end type