w_ljnc_preview.srw 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. $PBExportHeader$w_ljnc_preview.srw
  2. forward
  3. global type w_ljnc_preview from w_publ_easyq
  4. end type
  5. type ole_1 from olecustomcontrol within w_ljnc_preview
  6. end type
  7. type st_1 from statictext within w_ljnc_preview
  8. end type
  9. type sle_1 from singlelineedit within w_ljnc_preview
  10. end type
  11. type lb_1 from listbox within w_ljnc_preview
  12. end type
  13. end forward
  14. global type w_ljnc_preview from w_publ_easyq
  15. integer width = 5038
  16. string title = "龙嘉知识"
  17. windowstate windowstate = normal!
  18. ole_1 ole_1
  19. st_1 st_1
  20. sle_1 sle_1
  21. lb_1 lb_1
  22. end type
  23. global w_ljnc_preview w_ljnc_preview
  24. type variables
  25. int is_select_flag = 0 //用来标记是否根据时间查询过
  26. boolean is_click =false
  27. boolean is_first=true
  28. int is_hasDirectory
  29. end variables
  30. forward prototypes
  31. public subroutine get_mht (string arg_lnc_title)
  32. public subroutine change_readflag (integer arg_noticeid, integer arg_flag)
  33. public subroutine set_position ()
  34. public subroutine save_position ()
  35. end prototypes
  36. public subroutine get_mht (string arg_lnc_title);blob mht
  37. string msg
  38. int result
  39. UPDATE lnc_notice SET read_time=read_time+1 WHERE lnc_title = :arg_lnc_title;
  40. SELECT lnc_content INTO :mht FROM lnc_notice WHERE lnc_title= :arg_lnc_title;
  41. result=f_blobtofile('fjtemp\'+arg_lnc_title+'.mhtml',mht,msg)
  42. IF result =1 THEN
  43. ole_1.object.navigate(f_ljnc_get_path()+'fjtemp\'+arg_lnc_title+'.mhtml')
  44. END IF
  45. end subroutine
  46. public subroutine change_readflag (integer arg_noticeid, integer arg_flag);Int readflag
  47. DateTime Now
  48. Now = DateTime(Today(),Now())
  49. long row
  50. IF is_click =true THEN
  51. row=dw_1.getclickedrow( )
  52. ELSE
  53. row=dw_1.getrow( )
  54. END IF
  55. readflag = dw_1.GetItemDecimal(row, 'lnc_noticemx_readflag')
  56. IF readflag = 0 Then
  57. readflag = 1
  58. Else
  59. IF readflag = 1 Then readflag = 0
  60. End IF
  61. IF arg_flag =1 Then readflag = 1
  62. Update lnc_noticemx
  63. Set lnc_noticemx.readflag = :readflag ,
  64. lnc_noticemx.readdt = :Now
  65. Where dbo.lnc_noticemx.noticeid = :arg_noticeid And
  66. dbo.lnc_noticemx.UserID = :publ_userid;
  67. If sqlca.SQLCode = 0 Then
  68. Commit;
  69. dw_1.SetItem(row, 'lnc_noticemx_readflag',readflag)
  70. End If
  71. end subroutine
  72. public subroutine set_position ();This.X = Integer(ProfileString('ljnc_position.ini','w_ljnc_notice_detail','x','608'))
  73. This.Y = Integer(ProfileString('ljnc_position.ini','w_ljnc_notice_detail','y','320'))
  74. This.Width = Integer(ProfileString('ljnc_position.ini','w_ljnc_notice_detail','width','5000'))
  75. This.Height = Integer(ProfileString('ljnc_position.ini','w_ljnc_notice_detail','height','2300'))
  76. If This.Width < 658 Or This.Height < 156 Then
  77. This.Width = 5000
  78. This.Height = 2300
  79. End If
  80. end subroutine
  81. public subroutine save_position ();int fileno
  82. IF FileExists('ljnc_position.ini') =false THEN
  83. fileno=FileOpen('ljnc_position.ini',StreamMode!, Write!, LockWrite!, Replace!)
  84. FileClose(fileno)
  85. END IF
  86. SetProfileString('ljnc_position.ini','w_ljnc_notice_detail','x',string(this.x))
  87. SetProfileString('ljnc_position.ini','w_ljnc_notice_detail','y',string(this.y))
  88. SetProfileString('ljnc_position.ini','w_ljnc_notice_detail','width',string(this.width))
  89. SetProfileString('ljnc_position.ini','w_ljnc_notice_detail','height',string(this.height))
  90. end subroutine
  91. on w_ljnc_preview.create
  92. int iCurrent
  93. call super::create
  94. this.ole_1=create ole_1
  95. this.st_1=create st_1
  96. this.sle_1=create sle_1
  97. this.lb_1=create lb_1
  98. iCurrent=UpperBound(this.Control)
  99. this.Control[iCurrent+1]=this.ole_1
  100. this.Control[iCurrent+2]=this.st_1
  101. this.Control[iCurrent+3]=this.sle_1
  102. this.Control[iCurrent+4]=this.lb_1
  103. end on
  104. on w_ljnc_preview.destroy
  105. call super::destroy
  106. destroy(this.ole_1)
  107. destroy(this.st_1)
  108. destroy(this.sle_1)
  109. destroy(this.lb_1)
  110. end on
  111. event open;call super::open;set_position( ) //设置初始位置
  112. f_create_directory(f_ljnc_get_path()+'fjtemp\') //判断是否有改目录,无则创建
  113. em_1.text=String(year(today()) - 1) + '-' + String(month(today())) + '-' +String(day(today()))
  114. cb_1.triggerevent(clicked!)
  115. s_edit_index_tran ss_edit_index_tran
  116. ss_edit_index_tran = Message.powerobjectparm
  117. String arg_lnc_title
  118. arg_lnc_title = left(ss_edit_index_tran.arg_string_code,pos(ss_edit_index_tran.arg_string_code,'[') -1)
  119. IF IsNull(ss_edit_index_tran.arg_string_code) OR ss_edit_index_tran.arg_string_code='' THEN
  120. IF dw_1.getrow( ) > 0 THEN
  121. get_mht(dw_1.getitemstring( 1, 'lnc_notice_lnc_title'))
  122. END IF
  123. ELSE
  124. get_mht(arg_lnc_title)
  125. int i= 1
  126. DO WHILE dw_1.rowcount()>=i
  127. IF dw_1.getitemstring(i, 'lnc_notice_lnc_title') = arg_lnc_title THEN
  128. IF i=1 THEN
  129. change_readflag(dw_1.getitemdecimal(1, 'lnc_notice_noticeid'),1)
  130. END IF
  131. dw_1.setrow(i)
  132. i=dw_1.rowcount()
  133. END IF
  134. i ++
  135. LOOP
  136. END IF
  137. end event
  138. event resize;call super::resize;dw_1.width= this.width * 0.2
  139. ole_1.width=this.width * 0.8 - 120
  140. ole_1.x=dw_1.x + dw_1.width + 30
  141. ole_1.height=dw_1.height -20
  142. end event
  143. event close;call super::close;save_position( ) //保存位置
  144. end event
  145. type cb_func from w_publ_easyq`cb_func within w_ljnc_preview
  146. boolean visible = false
  147. boolean enabled = false
  148. end type
  149. type cb_exit from w_publ_easyq`cb_exit within w_ljnc_preview
  150. boolean visible = false
  151. integer x = 430
  152. boolean enabled = false
  153. end type
  154. type cb_2 from w_publ_easyq`cb_2 within w_ljnc_preview
  155. boolean visible = false
  156. boolean enabled = false
  157. end type
  158. type cb_psetup from w_publ_easyq`cb_psetup within w_ljnc_preview
  159. boolean visible = false
  160. boolean enabled = false
  161. end type
  162. type cb_1 from w_publ_easyq`cb_1 within w_ljnc_preview
  163. integer x = 256
  164. integer width = 165
  165. string text = "查询"
  166. end type
  167. event cb_1::clicked;call super::clicked;DateTime firstdate,enddate
  168. firstdate = DateTime(Date(EM_1.Text),Time(0))
  169. enddate = DateTime(Date(EM_2.Text),Time('23:59:59'))
  170. dw_1.retrieve(publ_userid,firstdate,enddate,sle_1.text)
  171. is_select_flag =1
  172. end event
  173. type st_3 from w_publ_easyq`st_3 within w_ljnc_preview
  174. integer x = 1705
  175. integer y = 68
  176. long backcolor = 134217738
  177. end type
  178. event st_3::constructor;call super::constructor;this.backcolor=rgb(236,233,216)
  179. end event
  180. type st_4 from w_publ_easyq`st_4 within w_ljnc_preview
  181. integer x = 2414
  182. integer y = 68
  183. end type
  184. event st_4::constructor;call super::constructor;this.backcolor=rgb(236,233,216)
  185. end event
  186. type em_1 from w_publ_easyq`em_1 within w_ljnc_preview
  187. integer x = 1906
  188. integer y = 52
  189. end type
  190. type em_2 from w_publ_easyq`em_2 within w_ljnc_preview
  191. integer x = 2519
  192. integer y = 52
  193. end type
  194. type ddlb_yl from w_publ_easyq`ddlb_yl within w_ljnc_preview
  195. boolean visible = false
  196. end type
  197. type cbx_yl from w_publ_easyq`cbx_yl within w_ljnc_preview
  198. boolean visible = false
  199. boolean enabled = false
  200. end type
  201. type dw_1 from w_publ_easyq`dw_1 within w_ljnc_preview
  202. integer y = 180
  203. integer width = 1518
  204. integer height = 1944
  205. string dataobject = "dw_ljnc_notice_list"
  206. end type
  207. event dw_1::clicked;call super::clicked;IF dwo.name='lnc_noticemx_readflag' and row > 0 THEN
  208. is_click=true
  209. change_readflag(getitemdecimal( getclickedrow( ), 'lnc_notice_noticeid'),0)
  210. END IF
  211. modify("DataWindow.Selected.Mouse=No")
  212. end event
  213. event dw_1::rowfocuschanged;call super::rowfocuschanged;IF is_first=true THEN
  214. is_first=false
  215. return
  216. END IF
  217. IF is_click = false THEN
  218. change_readflag(getitemdecimal( getrow( ), 'lnc_notice_noticeid'),1)
  219. ELSE
  220. is_click=false
  221. END IF
  222. get_mht(getitemstring(getrow( ), 'lnc_notice_lnc_title'))
  223. end event
  224. type sle_mtrl from w_publ_easyq`sle_mtrl within w_ljnc_preview
  225. end type
  226. type sle_cust from w_publ_easyq`sle_cust within w_ljnc_preview
  227. end type
  228. type st_mtrl from w_publ_easyq`st_mtrl within w_ljnc_preview
  229. end type
  230. type st_cust from w_publ_easyq`st_cust within w_ljnc_preview
  231. end type
  232. type cbx_loginretr from w_publ_easyq`cbx_loginretr within w_ljnc_preview
  233. end type
  234. type pb_em1 from w_publ_easyq`pb_em1 within w_ljnc_preview
  235. integer x = 2322
  236. integer y = 52
  237. end type
  238. type pb_em2 from w_publ_easyq`pb_em2 within w_ljnc_preview
  239. integer x = 2935
  240. integer y = 52
  241. end type
  242. type pb_2 from w_publ_easyq`pb_2 within w_ljnc_preview
  243. integer x = 3045
  244. integer y = 52
  245. end type
  246. type cb_help from w_publ_easyq`cb_help within w_ljnc_preview
  247. boolean visible = false
  248. integer x = 425
  249. boolean enabled = false
  250. end type
  251. type cb_copyself from w_publ_easyq`cb_copyself within w_ljnc_preview
  252. integer x = 0
  253. end type
  254. type gb_1 from w_publ_easyq`gb_1 within w_ljnc_preview
  255. end type
  256. type ln_bar from w_publ_easyq`ln_bar within w_ljnc_preview
  257. end type
  258. type ln_bar2 from w_publ_easyq`ln_bar2 within w_ljnc_preview
  259. end type
  260. type r_bar from w_publ_easyq`r_bar within w_ljnc_preview
  261. end type
  262. type ln_1 from w_publ_easyq`ln_1 within w_ljnc_preview
  263. boolean visible = false
  264. end type
  265. type ln_2 from w_publ_easyq`ln_2 within w_ljnc_preview
  266. boolean visible = false
  267. end type
  268. type ln_3 from w_publ_easyq`ln_3 within w_ljnc_preview
  269. boolean visible = false
  270. end type
  271. type ln_4 from w_publ_easyq`ln_4 within w_ljnc_preview
  272. boolean visible = false
  273. end type
  274. type ole_1 from olecustomcontrol within w_ljnc_preview
  275. event statustextchange ( string text )
  276. event progresschange ( long progress, long progressmax )
  277. event commandstatechange ( long command, boolean enable )
  278. event downloadbegin ( )
  279. event downloadcomplete ( )
  280. event titlechange ( string text )
  281. event propertychange ( string szproperty )
  282. event beforenavigate2 ( oleobject pdisp, any url, any flags, any targetframename, any postdata, any headers, ref boolean cancel )
  283. event newwindow2 ( ref oleobject ppdisp, ref boolean cancel )
  284. event navigatecomplete2 ( oleobject pdisp, any url )
  285. event documentcomplete ( oleobject pdisp, any url )
  286. event onquit ( )
  287. event onvisible ( boolean ocx_visible )
  288. event ontoolbar ( boolean toolbar )
  289. event onmenubar ( boolean menubar )
  290. event onstatusbar ( boolean statusbar )
  291. event onfullscreen ( boolean fullscreen )
  292. event ontheatermode ( boolean theatermode )
  293. event windowsetresizable ( boolean resizable )
  294. event windowsetleft ( long left )
  295. event windowsettop ( long top )
  296. event windowsetwidth ( long ocx_width )
  297. event windowsetheight ( long ocx_height )
  298. event windowclosing ( boolean ischildwindow, ref boolean cancel )
  299. event clienttohostwindow ( ref long cx, ref long cy )
  300. event setsecurelockicon ( long securelockicon )
  301. event filedownload ( ref boolean cancel )
  302. event navigateerror ( oleobject pdisp, any url, any frame, any statuscode, ref boolean cancel )
  303. event printtemplateinstantiation ( oleobject pdisp )
  304. event printtemplateteardown ( oleobject pdisp )
  305. event updatepagestatus ( oleobject pdisp, any npage, any fdone )
  306. event privacyimpactedstatechange ( boolean bimpacted )
  307. integer x = 1541
  308. integer y = 180
  309. integer width = 1678
  310. integer height = 1356
  311. integer taborder = 70
  312. boolean bringtotop = true
  313. borderstyle borderstyle = stylelowered!
  314. boolean focusrectangle = false
  315. string binarykey = "w_ljnc_preview.win"
  316. integer textsize = -12
  317. integer weight = 400
  318. fontcharset fontcharset = ansi!
  319. fontpitch fontpitch = variable!
  320. fontfamily fontfamily = swiss!
  321. string facename = "Tahoma"
  322. long textcolor = 33554432
  323. end type
  324. type st_1 from statictext within w_ljnc_preview
  325. integer x = 462
  326. integer y = 68
  327. integer width = 480
  328. integer height = 48
  329. boolean bringtotop = true
  330. integer textsize = -9
  331. integer weight = 400
  332. fontcharset fontcharset = gb2312charset!
  333. fontpitch fontpitch = variable!
  334. string facename = "宋体"
  335. long textcolor = 33554432
  336. long backcolor = 134217739
  337. string text = "标题或关键字包含:"
  338. alignment alignment = right!
  339. boolean focusrectangle = false
  340. end type
  341. event constructor;this.backcolor=rgb(236,233,216)
  342. end event
  343. type sle_1 from singlelineedit within w_ljnc_preview
  344. integer x = 942
  345. integer y = 52
  346. integer width = 741
  347. integer height = 84
  348. integer taborder = 110
  349. boolean bringtotop = true
  350. integer textsize = -9
  351. integer weight = 400
  352. fontcharset fontcharset = gb2312charset!
  353. fontpitch fontpitch = variable!
  354. string facename = "宋体"
  355. borderstyle borderstyle = stylelowered!
  356. end type
  357. type lb_1 from listbox within w_ljnc_preview
  358. boolean visible = false
  359. integer x = 2135
  360. integer y = 1784
  361. integer width = 361
  362. integer height = 108
  363. integer taborder = 90
  364. boolean bringtotop = true
  365. integer textsize = -12
  366. integer weight = 400
  367. fontcharset fontcharset = ansi!
  368. fontpitch fontpitch = variable!
  369. fontfamily fontfamily = swiss!
  370. string facename = "Tahoma"
  371. long textcolor = 33554432
  372. borderstyle borderstyle = stylelowered!
  373. end type
  374. Start of PowerBuilder Binary Data Section : Do NOT Edit
  375. 05w_ljnc_preview.bin
  376. 2600000a00e011cfd0e11ab1a1000000000000000000000000000000000003003e0009fffe000000060000000000000000000000010000000100000000000010000000000200000001fffffffe0000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdfffffffefffffffefffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006f00520074006f004500200074006e00790072000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050016ffffffffffffffff00000001000000000000000000000000000000000000000000000000000000007034d1f001cfd88a00000003000001800000000000500003004f0042005800430054005300450052004d0041000000000000000000000000000000000000000000000000000000000000000000000000000000000102001affffffff00000002ffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c00000000004200500043004f00530058004f00540041005200450047000000000000000000000000000000000000000000000000000000000000000000000000000000000001001affffffffffffffff000000038856f96111d0340ac0006ba9a205d74f000000007034d1f001cfd88a7034d1f001cfd88a000000000000000000000000004f00430054004e004e00450053005400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001020012ffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000030000009c000000000000000100000002fffffffe0000000400000005fffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
  377. 26ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000004c000025ee000023090000000000000000000000000000000000000000000000000000004c0000000000000000000000010057d0e011cf3573000869ae62122e2b00000008000000000000004c0002140100000000000000c0460000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004c000025ee000023090000000000000000000000000000000000000000000000000000004c0000000000000000000000010057d0e011cf3573000869ae62122e2b00000008000000000000004c0002140100000000000000c0460000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
  378. 15w_ljnc_preview.bin
  379. End of PowerBuilder Binary Data Section : No Source Expected After This Point