Recovery Datawindow From PBD/DLL PowerBuilder Compile
Note: use excute directly, if running directly from powerbuilder, add pbd or dll to library list
Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 |
forward global type w_main from window end type type st_3 from statictext within w_main end type type cb_4 from commandbutton within w_main end type type sle_dir from singlelineedit within w_main end type type st_2 from statictext within w_main end type type cb_3 from commandbutton within w_main end type type cb_export from commandbutton within w_main end type type st_1 from statictext within w_main end type type dw_review from datawindow within w_main end type type dw_list from datawindow within w_main end type type sle_pbd from singlelineedit within w_main end type type cb_load from commandbutton within w_main end type type strc_nod_tree from structure within w_main end type end forward type strc_nod_tree from structure unsignedlong nod_addr unsignedlong next_left unsignedlong next_right boolean flag end type global type w_main from window integer width = 3017 integer height = 1876 boolean titlebar = true string title = "Recovery Datawindow From PBD" boolean controlmenu = true boolean minbox = true boolean maxbox = true long backcolor = 67108864 string icon = "AppIcon!" boolean center = true st_3 st_3 cb_4 cb_4 sle_dir sle_dir st_2 st_2 cb_3 cb_3 cb_export cb_export st_1 st_1 dw_review dw_review dw_list dw_list sle_pbd sle_pbd cb_load cb_load end type global w_main w_main forward prototypes public subroutine wf_getlistdw (string as_pbd) public function blob wf_unicode_ansi (blob lb) public function unsignedlong wf_get_hdr (integer ihandle) end prototypes public subroutine wf_getlistdw (string as_pbd);//get dwo name list //get dwo list from ent band //open file Int iFileHandle Blob bread Boolean isUnicode = False ULong ul_NOD_OFFSET //process current NOD ULong ul_NEXT_NOD_OFFSET = 1024 //default first NOD 0x400H ULong ul_LenOfObjName_OFFSET = 22 //dwo name's index of ENT* ULong ul_LenOfENTBand = 3040 ULong ul_LenOfObjectInfo = 28 //<=9: 24 >=10:28 String ls_objname ULong ul_fileLen Long hdr_offset ULong ul_LenOfObjName ULong ul_obj_OFFSET ULong ll_obj = 0 //init once String ls_filetype strc_nod_tree Nod_List[],NULL_ARR[] //array list Int ifr //index file round-for Int i //index Nod_List round-for dw_list.reset() //beginning file ,reset variable ul_NEXT_NOD_OFFSET = 1024 //will be change,so init at beginning. ul_LenOfObjName_OFFSET = 22 //will be change,so init at beginning. //len file,before openfile function ul_fileLen = FileLength(as_pbd) //note:must be shared! FILE-LOCK-MODE,else,after restart() event,cannt open the file.important this. iFileHandle = FileOpen(as_pbd,StreamMode!,Read!,Shared! ) If iFileHandle < 1 Then MessageBox("Open Error","Cannt open file: " + as_pbd) Return End If //get hdr offse //find the hdr if dll hdr_offset = 0 //dll or pbd file type ls_filetype = Lower(Right(as_pbd,4)) If ls_filetype = ".dll" Or ls_filetype = ".exe" Then //file seek to RTL FromEnd! FileSeek(iFileHandle, -512,FromEnd!) FileRead(iFileHandle,bread) hdr_offset = Long(BlobMid(bread,5,4)) End If //1.ansi or unicode FileSeek(iFileHandle,hdr_offset,FromBeginning!) FileRead(iFileHandle,bread) //the fifth char is "00" then it's unicode If Integer(BlobMid(bread,5,2)) = 80 Then //0x0050H isUnicode = True ul_NEXT_NOD_OFFSET = 1536 //0x600H ul_LenOfObjName_OFFSET = 26 End If //get next NOD address ul_LenOfObjName = 0 ul_obj_OFFSET = 0 //find all NOD bands Nod_List[UpperBound(Nod_List)+1].NOD_addr = hdr_offset + ul_NEXT_NOD_OFFSET //first add the "hdr_offset",others not,they are Absolute address Nod_List[UpperBound(Nod_List)].flag = False //Two values(next-NODE) are not read For i = 1 To UpperBound(Nod_List) //upper limit will change,not a fixed value If Not Nod_List[i].flag Then //find left-NOD tree ul_NOD_OFFSET = Nod_List[i].NOD_addr FileSeek(iFileHandle,ul_NOD_OFFSET,FromBeginning!) FileRead(iFileHandle,bread) ul_NEXT_NOD_OFFSET = Long(BlobMid(bread,5,4)) If ul_NEXT_NOD_OFFSET > 0 And ul_NEXT_NOD_OFFSET < ul_fileLen - 512 Then Nod_List[UpperBound(Nod_List)+1].NOD_addr = ul_NEXT_NOD_OFFSET Nod_List[UpperBound(Nod_List)].flag = False //Two values(next-NODE) are not read End If //find right-NOD tree ul_NEXT_NOD_OFFSET = Long(BlobMid(bread,13,4)) If ul_NEXT_NOD_OFFSET > 0 And ul_NEXT_NOD_OFFSET < ul_fileLen - 512 Then Nod_List[UpperBound(Nod_List)+1].NOD_addr = ul_NEXT_NOD_OFFSET Nod_List[UpperBound(Nod_List)].flag = False //Two values(next-NODE) are not read End If //set flag Nod_List[i].flag = True; //Two values(Current-NODE) are read End If Next For i = 1 To UpperBound(Nod_List) //address of NOD ul_NOD_OFFSET = Nod_List[i].NOD_addr //ENT list //not add hdr_offset,they are Absolute address FileSeek(iFileHandle,ul_NOD_OFFSET+32,FromBeginning!) FileRead(iFileHandle,bread) //round to get ent list ul_obj_OFFSET = 0 Do While(ul_obj_OFFSET < ul_LenOfENTBand -ul_LenOfObjectInfo) ul_LenOfObjName = 0 ul_LenOfObjName = Integer(BlobMid(bread,ul_obj_OFFSET + ul_LenOfObjName_OFFSET + 1,2)) //break when ls_objname is null. If ul_LenOfObjName = 0 Then Exit If isUnicode Then ls_objname = String(BlobMid(bread,ul_obj_OFFSET + ul_LenOfObjName_OFFSET + 2 + 1,ul_LenOfObjName),EncodingUTF16LE!) //especial:encoding Else ls_objname = String(BlobMid(bread,ul_obj_OFFSET + ul_LenOfObjName_OFFSET + 2 + 1,ul_LenOfObjName),EncodingANSI!) //especial:encoding End If If Right(ls_objname,4) = ".dwo" Then ll_obj = dw_list.InsertRow(0) dw_list.SetItem(ll_obj, "dwname",Left(ls_objname,Len(ls_objname) -4) ) dw_list.SetItem(ll_obj, "dwlib",as_pbd) End If ul_obj_OFFSET += ul_LenOfObjName_OFFSET + 2 + ul_LenOfObjName Loop Next FileClose(iFileHandle) //must!,else not be:setlibrarylist //reset array Nod_List = NULL_ARR end subroutine public function blob wf_unicode_ansi (blob lb);blob lb_ret int li_len int i,k li_len = len(lb) - 1 for i = 1 to li_len step 2 if integer(blobmid(lb,i,2))<256 then lb_ret +=blobmid(lb,i,1) else lb_ret +=blobmid(lb,i,2) end if next return lb_ret end function public function unsignedlong wf_get_hdr (integer ihandle);//find the hdr if dll long hdr_offset //file seek to RTL FromEnd! FileSeek(ihandle,508,FromEnd!) return hdr_offset end function on w_main.create this.st_3=create st_3 this.cb_4=create cb_4 this.sle_dir=create sle_dir this.st_2=create st_2 this.cb_3=create cb_3 this.cb_export=create cb_export this.st_1=create st_1 this.dw_review=create dw_review this.dw_list=create dw_list this.sle_pbd=create sle_pbd this.cb_load=create cb_load this.Control[]={this.st_3,& this.cb_4,& this.sle_dir,& this.st_2,& this.cb_3,& this.cb_export,& this.st_1,& this.dw_review,& this.dw_list,& this.sle_pbd,& this.cb_load} end on on w_main.destroy destroy(this.st_3) destroy(this.cb_4) destroy(this.sle_dir) destroy(this.st_2) destroy(this.cb_3) destroy(this.cb_export) destroy(this.st_1) destroy(this.dw_review) destroy(this.dw_list) destroy(this.sle_pbd) destroy(this.cb_load) end on type st_3 from statictext within w_main integer x = 37 integer y = 1696 integer width = 2926 integer height = 64 integer textsize = -10 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "Note: use excute directly, if running directly from powerbuilder, add pbd or dll to library list" boolean focusrectangle = false end type type cb_4 from commandbutton within w_main integer x = 2560 integer y = 120 integer width = 123 integer height = 100 integer taborder = 10 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" string text = "..." end type event clicked;String ls_path Integer li_result ls_path = sle_dir.Text li_result = GetFolder( "Choose Folder", ls_path ) If Len(ls_path) > 0 Then sle_dir.Text = ls_path End If end event type sle_dir from singlelineedit within w_main integer x = 219 integer y = 128 integer width = 2341 integer height = 84 integer taborder = 20 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 borderstyle borderstyle = stylelowered! end type type st_2 from statictext within w_main integer x = 37 integer y = 128 integer width = 183 integer height = 64 integer textsize = -10 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "DIR:" alignment alignment = right! boolean focusrectangle = false end type type cb_3 from commandbutton within w_main integer x = 2560 integer y = 24 integer width = 123 integer height = 100 integer taborder = 20 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" string text = "..." end type event clicked;String ls_path, ls_file Int li_rc ls_path = sle_pbd.Text li_rc = GetFileSaveName ( "Select File", ls_path, ls_file, "pbd", "PBD (*.pbd),*.pbd,Dll (*.dll),*.dll,Exe (*.exe),*.exe,All Files (*.*),*.*" ) If li_rc = 1 Then sle_pbd.Text = ls_path End If end event type cb_export from commandbutton within w_main integer x = 2706 integer y = 120 integer width = 233 integer height = 100 integer taborder = 20 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" string text = "Export" end type event clicked; Int writetimes Long ll_write_wait UInt ui_unicodeFlag = 65279 //oxFEFF Blob wb String ls_syntax, ls_DataInside Int li_row, li_filenum, wi String ls_dir String ls_dwname, ls_chk ls_dir = sle_dir.Text If IsNull(ls_dir) Or Len(Trim(ls_dir)) = 0 Then MessageBox("Warning", "Dir Is Null") Return End If For li_row = 1 To dw_list.RowCount() ls_chk = dw_list.GetItemString(li_row, "chk" ) ls_dwname = dw_list.GetItemString(li_row, "dwname" ) If IsNull(ls_chk) Or Len(Trim(ls_chk)) = 0 Then ls_chk = "" If ls_chk <> "Y" Then Continue If IsNull(ls_dir) Or Len(Trim(ls_dir)) = 0 Then Continue Try //to catch "unresolvable external func_nam when linek reference" error! used global function error messagebox dw_review.DataObject = ls_dwname Catch(runtimeerror rte) End Try //note: unicode ahead"_" replace unicode-file-flag ls_syntax = "_$PBExportHeader$" + ls_dwname + ".srd~r~n" + dw_review.Describe('datawindow.syntax') ls_DataInside = dw_review.Describe('datawindow.syntax.data') If ls_DataInside <> "data()" Then ls_syntax += "~r~n" + ls_DataInside End If wb = Blob(ls_syntax,EncodingUTF16LE!) //not be EncodingANSI!) //unicode file,insert flag at beginning. BlobEdit(wb,1,ui_unicodeFlag) ll_write_wait = Len(wb) writetimes = Ceiling(ll_write_wait/32765.0) //open and new file to write srd. li_filenum = FileOpen(ls_dir + "\" + ls_dwname + ".srd", StreamMode!, Write!,LockReadWrite!,Replace!) If li_filenum < 1 Then Continue If(writetimes = 1) Then FileWrite(li_filenum,wb) Else For wi = 1 To writetimes FileSeek(li_filenum, 0, FromEnd!) If wi < writetimes Then FileWrite(li_filenum,BlobMid(wb,32765*(wi -1)+1,32765)) ll_write_wait -= 32765 Else FileWrite(li_filenum,BlobMid(wb,32765*(wi -1)+1,ll_write_wait)) End If Next End If FileClose(li_filenum) Next MessageBox("Warning", "Success") end event type st_1 from statictext within w_main integer x = 37 integer y = 32 integer width = 183 integer height = 64 integer textsize = -10 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "PBD:" alignment alignment = right! boolean focusrectangle = false end type type dw_review from datawindow within w_main integer x = 1280 integer y = 256 integer width = 1682 integer height = 1408 integer taborder = 30 string title = "none" boolean hscrollbar = true boolean vscrollbar = true boolean livescroll = true borderstyle borderstyle = stylelowered! end type type dw_list from datawindow within w_main integer x = 37 integer y = 256 integer width = 1207 integer height = 1408 integer taborder = 20 string title = "none" string dataobject = "d_dwlist" boolean hscrollbar = true boolean vscrollbar = true boolean livescroll = true borderstyle borderstyle = stylelowered! end type event rowfocuschanged;dw_review.SetRedraw(False) Try dw_review.DataObject = this.getitemstring(currentrow, "dwname") Catch(runtimeerror rte) End Try dw_review.InsertRow(0) dw_review.InsertRow(0) //some form style dw,the foreground and background,color is white all.be seen nothing. dw_review.SetFocus() dw_review.SetRow(1) dw_review.SetColumn(1) dw_review.SetRedraw(True) end event event constructor;Long ll_column String ls_color, ls_border,ls_dw_color ls_dw_color = This.Describe("datawindow.color") ls_color = "0~t if(getrow()=currentrow(), 29935871, "+ls_dw_color+")" ls_border = "0~t if(getrow()=currentrow(), 5, 0)" For ll_column = 1 To Long(This.Object.datawindow.column.count) If ll_column > 1 Then This.Modify("#"+String(ll_column)+".background.color = '"+ls_color+"'") This.Modify("#"+String(ll_column)+".border = '"+ls_border+"'") End If Next end event event clicked;String ls_chk, ls_chkall Long ll_row Long ll_found Choose Case dwo.Name Case "chkall" If This.RowCount() = 0 Then Return ls_chkall = This.GetItemString(1, "chkall") If IsNull(ls_chkall) Or Len(Trim(ls_chkall)) = 0 Then ls_chkall = "N" If ls_chkall = "N" Then ls_chkall = "Y" Else ls_chkall = "N" End If For ll_row = 1 To This.RowCount() This.SetItem(ll_row, "chk", ls_chkall) Next This.SetItem(1, "chkall", ls_chkall) End Choose end event event itemchanged;Long ll_found Choose Case dwo.Name Case "chk" If This.RowCount() = 0 Then Return If Data = "Y" Then If row > 1 And row < This.RowCount() Then ll_found = This.Find( "chk = 'N'", 1, row -1) + This.Find( "chk = 'N'", row + 1, This.RowCount()) Else If row = 1 Then ll_found = This.Find( "chk = 'N'", 2, This.RowCount()) Else ll_found = This.Find( "chk = 'N'", 1, This.RowCount() - 1) End If End If If ll_found = 0 Then This.SetItem(1, "chkall", "Y") Else This.SetItem(1, "chkall", "N") End If Else This.SetItem(1, "chkall", "N") End If End Choose end event type sle_pbd from singlelineedit within w_main integer x = 219 integer y = 32 integer width = 2341 integer height = 84 integer taborder = 10 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 borderstyle borderstyle = stylelowered! end type type cb_load from commandbutton within w_main integer x = 2706 integer y = 24 integer width = 233 integer height = 100 integer taborder = 10 integer textsize = -10 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" string text = "Load" end type event clicked;String ls_pbd ls_pbd = sle_pbd.Text If IsNull(ls_pbd) Or Len(Trim(ls_pbd)) = 0 Then MessageBox("Warning", "Lib Is Null") Return End If wf_getlistdw(ls_pbd) // already compiled If Handle(GetApplication()) <> 0 Then String ls_librarylist, ls_library Int li_FileNum ls_librarylist = GetLibraryList () ls_library =ls_pbd If IsNull(ls_library) Then ls_library = "" If Len(ls_library) <= 0 Then Return If Pos(ls_librarylist,ls_library) > 0 Then Return AddToLibraryList(ls_library) End If end event |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
release 10.5; datawindow(units=0 timer_interval=0 color=67108864 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 110 print.margin.right = 110 print.margin.top = 96 print.margin.bottom = 96 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes print.preview.outline=yes hidegrayline=no grid.lines=0 ) header(height=80 color="536870912" ) summary(height=0 color="536870912" ) footer(height=0 color="536870912" ) detail(height=80 color="536870912" ) table(column=(type=char(1) updatewhereclause=yes name=chkall dbname="chkall" initial="Y" values=" Y/ N" ) column=(type=char(1) updatewhereclause=yes name=chk dbname="chk" initial="Y" values=" Y/ N" ) column=(type=char(250) updatewhereclause=yes name=dwname dbname="dwname" ) column=(type=char(4000) updatewhereclause=yes name=dwlib dbname="dwlib" ) ) text(band=header alignment="2" text="Dwname" border="6" color="33554432" x="242" y="4" height="68" width="768" html.valueishtml="0" name=dwname_t visible="1" font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) compute(band=header alignment="2" expression="rowcount()"border="6" color="33554432" x="5" y="4" height="68" width="96" format="[General]" html.valueishtml="0" name=page_2 visible="1" font.face="Tahoma" font.height="-9" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=header id=1 alignment="2" tabsequence=50 border="6" color="255" x="119" y="4" height="68" width="110" format="[general]" html.valueishtml="0" name=chkall visible="1" checkbox.text="" checkbox.on="Y" checkbox.off="N" checkbox.scale=yes checkbox.threed=no font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=3 alignment="0" tabsequence=30 border="6" color="33554432" x="242" y="4" height="68" width="768" format="[general]" html.valueishtml="0" name=dwname visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) compute(band=detail alignment="2" expression="if(Getrow() = currentRow(), '►►', ' '+ getrow() )"border="6" color="33554432" x="5" y="4" height="68" width="96" format="[General]" html.valueishtml="0" name=page_1 visible="1" font.face="Times New Roman" font.height="-9" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=2 alignment="2" tabsequence=20 border="6" color="16711680" x="114" y="4" height="68" width="114" format="[general]" html.valueishtml="0" name=chk visible="1" checkbox.text="" checkbox.on="Y" checkbox.off="N" checkbox.scale=yes checkbox.threed=no font.face="Tahoma" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) htmltable(border="1" ) htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" pagingmethod=0 generatedddwframes="1" ) xhtmlgen() cssgen(sessionspecific="0" ) xmlgen(inline="0" ) xsltgen() jsgen() export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 ) import.xml() export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" ) export.xhtml() |
Find Projects On Github click here
Good Luck!
Hello just wanted to give you a quick heads up. The words in your post
seem to be running off the screen in Chrome. I’m not
sure if this is a format issue or something to do
with internet browser compatibility but I
figured I’d post to let you know. The design look great though!
Hope you get the issue fixed soon. Kudos