Library Export In PowerBuilder
Uses the function librarydirectoryex to get the list of objects in pbl. Use the LibraryExport function to export powerbuilder objects
Window 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 | forward global type w_main from window end type type cb_1 from commandbutton within w_main end type type sle_dir from singlelineedit within w_main end type type st_4 from statictext within w_main end type type cb_2 from commandbutton within w_main end type type cb_load from commandbutton within w_main end type type st_3 from statictext within w_main end type type st_2 from statictext within w_main end type type sle_1 from singlelineedit within w_main end type type ddplb_type from dropdownpicturelistbox within w_main end type type cb_browser from commandbutton within w_main end type type st_1 from statictext within w_main end type type dw_objects from datawindow within w_main end type type sle_pbl from singlelineedit within w_main end type end forward global type w_main from window integer width = 3246 integer height = 1992 boolean titlebar = true string title = "Library Export" boolean controlmenu = true boolean minbox = true boolean maxbox = true boolean resizable = true long backcolor = 67108864 string icon = "AppIcon!" boolean center = true cb_1 cb_1 sle_dir sle_dir st_4 st_4 cb_2 cb_2 cb_load cb_load st_3 st_3 st_2 st_2 sle_1 sle_1 ddplb_type ddplb_type cb_browser cb_browser st_1 st_1 dw_objects dw_objects sle_pbl sle_pbl end type global w_main w_main forward prototypes public function integer wf_getlistobject (string as_pbl) public function libexporttype wf_libexporttype (string as_type, ref string as_ext) end prototypes public function integer wf_getlistobject (string as_pbl);String ls_entries Integer li_pos Long i ls_entries = librarydirectoryex(as_pbl,dirall!) dw_objects.Reset() //messagebox("", ls_entries) If ls_entries > "" Then dw_objects.ImportString(ls_entries) dw_objects.Sort() For i = 1 To dw_objects.RowCount() dw_objects.Object.objects_img[i] = "Img\" + (dw_objects.Object.objects_type[i] + ".bmp") dw_objects.Object.objects_url[i] = as_pbl Next Return 0 Else Return -1 End If dw_objects.sort() dw_objects.setredraw( false) dw_objects.setredraw( true) end function public function libexporttype wf_libexporttype (string as_type, ref string as_ext);String is_type[] = {"Application","DataWindow","Function","Menu","Pipeline","Project","Query","Structure","UserObject","Window"} libexporttype il_type[] = {exportapplication!,exportdatawindow!,exportfunction!,exportmenu!,exportpipeline!,exportproject!,exportquery!,exportstructure!,exportuserobject!,exportwindow!} Integer ii_count = 10 String ls_ext[] = {"sra","srd","srf","srm","srp","srj","srq","srs","sru","srw"} Integer i For i = 1 To ii_count If Lower(Trim(is_type[i])) = Lower(Trim(as_type)) Then as_ext = ls_ext[i] Return il_type[i] End If Next as_ext = ls_ext[2] Return exportdatawindow! end function on w_main.create this.cb_1=create cb_1 this.sle_dir=create sle_dir this.st_4=create st_4 this.cb_2=create cb_2 this.cb_load=create cb_load this.st_3=create st_3 this.st_2=create st_2 this.sle_1=create sle_1 this.ddplb_type=create ddplb_type this.cb_browser=create cb_browser this.st_1=create st_1 this.dw_objects=create dw_objects this.sle_pbl=create sle_pbl this.Control[]={this.cb_1,& this.sle_dir,& this.st_4,& this.cb_2,& this.cb_load,& this.st_3,& this.st_2,& this.sle_1,& this.ddplb_type,& this.cb_browser,& this.st_1,& this.dw_objects,& this.sle_pbl} end on on w_main.destroy destroy(this.cb_1) destroy(this.sle_dir) destroy(this.st_4) destroy(this.cb_2) destroy(this.cb_load) destroy(this.st_3) destroy(this.st_2) destroy(this.sle_1) destroy(this.ddplb_type) destroy(this.cb_browser) destroy(this.st_1) destroy(this.dw_objects) destroy(this.sle_pbl) end on event resize;dw_objects.width = newwidth - 10 dw_objects.height = newheight - dw_objects.y - 10 end event event open; end event type cb_1 from commandbutton within w_main integer x = 2377 integer y = 256 integer width = 123 integer height = 84 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 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 = 256 integer width = 2158 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 st_4 from statictext within w_main integer x = 37 integer y = 256 integer width = 146 integer height = 76 integer textsize = -9 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_2 from commandbutton within w_main integer x = 2523 integer y = 256 integer width = 270 integer height = 84 integer taborder = 30 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;String ls_path Integer li_result Long ll_row String ls_chk, ls_pbl, ls_objects_name, ls_objects_type String ls_source, ls_errors, ls_ext Integer li_FileNum libexporttype libtype ls_path = sle_dir.Text If IsNull(ls_path) Or Len(Trim(ls_path)) = 0 Then Messagebox("Warning", "Directory Is Null") Return End If If dw_objects.AcceptText( ) = -1 Then Return For ll_row = 1 To dw_objects.RowCount() ls_chk = dw_objects.GetItemString(ll_row, "chk") ls_pbl = dw_objects.GetItemString(ll_row, "objects_url") ls_objects_name = dw_objects.GetItemString(ll_row, "objects_name") ls_objects_type = dw_objects.GetItemString(ll_row, "objects_type") If IsNull(ls_chk) Or Len(Trim(ls_chk)) = 0 Then ls_chk = "" If ls_chk <> "Y" Then Continue libtype = wf_libexporttype(ls_objects_type , ls_ext) ls_source = "" ls_source = LibraryExport(ls_pbl, ls_objects_name, libtype) // Save to the file If IsNull(ls_ext) Or Len(Trim(ls_ext)) = 0 Then ls_ext = "txt" li_FileNum = FileOpen(ls_path + "\" + ls_objects_name + "." +ls_ext , StreamMode!, Write!, LockWrite!, Replace!) ls_source = "$PBExportHeader$" + ls_objects_name + "." +ls_ext + "~r~n" + ls_source FileWrite(li_FileNum, ls_source) FileClose(li_FileNum) Next Messagebox("Warning","Success") end event type cb_load from commandbutton within w_main integer x = 2523 integer y = 32 integer width = 233 integer height = 84 integer taborder = 20 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" string text = "Load" end type event clicked;String ls_pbl dw_objects.Reset() ls_pbl = sle_pbl.Text If IsNull(ls_pbl) Or Len(Trim(ls_pbl)) = 0 Then Return wf_getlistobject(ls_pbl) end event type st_3 from statictext within w_main integer x = 1024 integer y = 140 integer width = 155 integer height = 76 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "Find:" alignment alignment = right! boolean focusrectangle = false end type type st_2 from statictext within w_main integer x = 37 integer y = 140 integer width = 155 integer height = 76 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "Type:" alignment alignment = right! boolean focusrectangle = false end type type sle_1 from singlelineedit within w_main event ue_edit pbm_enchange integer x = 1207 integer y = 140 integer width = 1152 integer height = 84 integer taborder = 10 boolean bringtotop = true 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 event ue_edit;String ls_filter String ls_text String ls_type ls_type = ddplb_type.Text If IsNull(ls_type) Or Len(Trim(ls_type)) = 0 Then ls_type = "" If ls_type = "All Objects" Then ls_type = "" If ls_type = "" Then ls_filter = "" Else ls_filter = "(upper(objects_type) = '" + Upper(ls_type) + "')" End If ls_text = Upper(Trim(Text)) If ls_text > "" Then If ls_filter > "" Then ls_filter = ls_filter + " and (upper(objects_name) like '%" + ls_text + "%')" Else ls_filter = ls_filter + " (upper(objects_name) like '%" + ls_text + "%')" End If End If dw_objects.SetFilter(ls_filter) dw_objects.Filter() Return end event type ddplb_type from dropdownpicturelistbox within w_main integer x = 219 integer y = 140 integer width = 768 integer height = 928 integer taborder = 30 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 string item[] = {"All Objects","Application","DataWindow","Function","Menu","Pipeline","Project","Query","Structure","UserObject","Window"} borderstyle borderstyle = stylelowered! integer itempictureindex[] = {11,1,2,3,4,5,6,7,8,9,10} string picturename[] = {"Img\Application.bmp","Img\DataWindow.bmp","Img\Function.bmp","Img\Menu.bmp","Img\Pipeline.bmp","Img\Project.bmp","Img\Query.bmp","Img\Structure.bmp","Img\UserObject.bmp","Img\Window.bmp","Img\Library.bmp"} long picturemaskcolor = 536870912 end type event selectionchanged; String ls_type dw_objects.SetRedraw(False) ls_type = ddplb_type.Text If IsNull(ls_type) Or Len(Trim(ls_type)) = 0 Then ls_type = "" If ls_type = "All Objects" Then ls_type = "" If ls_type = "" Then dw_objects.SetFilter("") Else dw_objects.SetFilter("upper(objects_type) = '" + Upper(ls_type) + "'") End If dw_objects.Filter() dw_objects.Sort() dw_objects.SetRedraw(True) Return end event type cb_browser from commandbutton within w_main integer x = 2377 integer y = 32 integer width = 123 integer height = 84 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_pbl.Text li_rc = GetFileSaveName ( "Select File", ls_path, ls_file, "pbl", "PBL (*.pbl),*.pbl,All Files (*.*),*.*" ) If li_rc = 1 Then sle_pbl.Text = ls_path End If end event type st_1 from statictext within w_main integer x = 37 integer y = 32 integer width = 146 integer height = 76 integer textsize = -9 integer weight = 400 fontcharset fontcharset = ansi! fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Tahoma" long textcolor = 33554432 long backcolor = 67108864 string text = "PBL:" alignment alignment = right! boolean focusrectangle = false end type type dw_objects from datawindow within w_main integer y = 384 integer width = 3145 integer height = 1472 integer taborder = 20 string title = "none" string dataobject = "d_object_list" boolean hscrollbar = true boolean vscrollbar = true boolean livescroll = true borderstyle borderstyle = stylelowered! end type 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 Not (ll_column = 7 ) Then This.Modify("#"+String(ll_column)+".background.color = '"+ls_color+"'") This.Modify("#"+String(ll_column)+".border = '"+ls_border+"'") End If Next 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 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 type sle_pbl from singlelineedit within w_main integer x = 219 integer y = 32 integer width = 2158 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 |
Datawindow 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 | 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 selected.mouse=no ) header(height=80 color="536870912" ) summary(height=0 color="536870912" ) footer(height=0 color="536870912" ) detail(height=84 color="536870912" ) table(column=(type=char(200) updatewhereclause=no name=objects_name dbname="objects_name" ) column=(type=datetime updatewhereclause=no name=objects_time dbname="objects_time" ) column=(type=char(4000) updatewhereclause=no name=objects_comment dbname="objects_comment" ) column=(type=char(100) updatewhereclause=no name=objects_type dbname="objects_type" ) column=(type=char(1000) updatewhereclause=yes name=objects_img dbname="objects_img" ) column=(type=char(1000) updatewhereclause=yes name=objects_url dbname="name_1" ) 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" ) sort="objects_type A objects_name A " ) compute(band=header alignment="2" expression="RowCount()"border="6" color="33554432" x="5" y="4" height="68" width="137" 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=7 alignment="2" tabsequence=60 border="6" color="255" x="155" y="4" height="68" width="128" 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="-9" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) text(band=header alignment="2" text="" border="6" color="33554432" x="293" y="4" height="68" width="82" html.valueishtml="0" name=objects_img_t 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" ) text(band=header alignment="2" text="Objects Name" border="6" color="33554432" x="375" y="4" height="68" width="1010" html.valueishtml="0" name=objects_name_t 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" ) text(band=header alignment="2" text="Update Time" border="6" color="33554432" x="1394" y="4" height="68" width="608" html.valueishtml="0" name=update_time_t 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" ) text(band=header alignment="2" text="Object Comment" border="6" color="33554432" x="2464" y="4" height="68" width="1093" html.valueishtml="0" name=object_comment_t 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" ) text(band=header alignment="2" text="Objects Type" border="6" color="33554432" x="2011" y="4" height="68" width="443" html.valueishtml="0" name=objects_type_t 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" ) text(band=header alignment="2" text="Objects Url" border="6" color="33554432" x="3566" y="4" height="68" width="1842" html.valueishtml="0" name=objects_url_t 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" ) compute(band=detail alignment="2" expression="GetRow()"border="6" color="33554432" x="5" y="4" height="68" width="137" format="[General]" html.valueishtml="0" name=page_1 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=detail id=8 alignment="2" tabsequence=50 border="6" color="16711680" x="155" y="4" height="68" width="128" 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="-9" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" ) column(band=detail id=5 alignment="0" tabsequence=60 border="6" color="33554432" x="297" y="4" height="68" width="78" format="[general]" html.valueishtml="0" name=objects_img visible="1" bitmapname=yes edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.displayonly=yes 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=detail id=1 alignment="0" tabsequence=10 border="6" color="33554432" x="375" y="4" height="68" width="1010" format="[general]" html.valueishtml="0" name=objects_name visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.displayonly=yes 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=detail id=2 alignment="0" tabsequence=20 border="6" color="33554432" x="1394" y="4" height="68" width="608" format="yyyy/mm/dd hh:mm:ss" html.valueishtml="0" name=update_time visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.displayonly=yes 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=detail id=3 alignment="0" tabsequence=40 border="6" color="33554432" x="2464" y="4" height="68" width="1093" format="[general]" html.valueishtml="0" name=object_comment visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.displayonly=yes 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=detail id=4 alignment="0" tabsequence=30 border="6" color="33554432" x="2011" y="4" height="68" width="443" format="[general]" html.valueishtml="0" name=objects_type visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.displayonly=yes 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=detail id=6 alignment="0" tabsequence=70 border="6" color="33554432" x="3570" y="4" height="68" width="1838" format="[general]" html.valueishtml="0" name=objects_url visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=no edit.displayonly=yes font.face="Tahoma" font.height="-9" 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!