PowerBuilder DropDown Calculator
Source Code
str_calculator from structure
1 2 3 4 5 6 7 8 | global type str_calculator from structure integer x integer y window window datawindow dw string column string value end type |
w_calculator from window
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 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 | forward global type w_calculator from window end type type cb_clear2 from commandbutton within w_calculator end type type cb_7 from commandbutton within w_calculator end type type cb_4 from commandbutton within w_calculator end type type cb_1 from commandbutton within w_calculator end type type cb_clear1 from commandbutton within w_calculator end type type cb_8 from commandbutton within w_calculator end type type cb_5 from commandbutton within w_calculator end type type cb_2 from commandbutton within w_calculator end type type cb_0 from commandbutton within w_calculator end type type cb_dec from commandbutton within w_calculator end type type cb_3 from commandbutton within w_calculator end type type cb_6 from commandbutton within w_calculator end type type cb_9 from commandbutton within w_calculator end type type cb_shift from commandbutton within w_calculator end type type cb_percent from commandbutton within w_calculator end type type cb_mult from commandbutton within w_calculator end type type cb_div from commandbutton within w_calculator end type type cb_minus from commandbutton within w_calculator end type type cb_plus from commandbutton within w_calculator end type type cb_enter from commandbutton within w_calculator end type type r_1 from rectangle within w_calculator end type type ln_1 from line within w_calculator end type type ln_2 from line within w_calculator end type end forward global type w_calculator from window integer x = 439 integer y = 456 integer width = 562 integer height = 736 windowtype windowtype = popup! long backcolor = 12632256 cb_clear2 cb_clear2 cb_7 cb_7 cb_4 cb_4 cb_1 cb_1 cb_clear1 cb_clear1 cb_8 cb_8 cb_5 cb_5 cb_2 cb_2 cb_0 cb_0 cb_dec cb_dec cb_3 cb_3 cb_6 cb_6 cb_9 cb_9 cb_shift cb_shift cb_percent cb_percent cb_mult cb_mult cb_div cb_div cb_minus cb_minus cb_plus cb_plus cb_enter cb_enter r_1 r_1 ln_1 ln_1 ln_2 ln_2 end type global w_calculator w_calculator type variables Private: str_calculator istr_calc String is_num String is_prevnum String is_sign end variables forward prototypes public subroutine wf_numpress (string vs_digit) public function boolean wf_numtoobig (string vs_num) public subroutine wf_calc () public subroutine wf_trim (ref string rs_num) end prototypes public subroutine wf_numpress (string vs_digit);//==================================================================== // Function: w_calculator.wf_numpress() //-------------------------------------------------------------------- // Description: //-------------------------------------------------------------------- // Arguments: // string vs_digit //-------------------------------------------------------------------- // Returns: (none) //-------------------------------------------------------------------- // Author: PB.BaoGa Date: 2021/07/05 //-------------------------------------------------------------------- // Usage: w_calculator.wf_numpress ( string vs_digit ) //-------------------------------------------------------------------- // Copyright (c) PB.BaoGa(TM), All rights reserved. //-------------------------------------------------------------------- // Modify History: // //==================================================================== Decimal lc_null If is_num = '' Then SetNull(lc_null) istr_calc.dw.SetItem(istr_calc.dw.GetRow(), istr_calc.column, lc_null) End If If wf_NumTooBig(is_num + vs_digit) Then Return is_num = is_num + vs_digit istr_calc.dw.SetText(is_num) end subroutine public function boolean wf_numtoobig (string vs_num);//==================================================================== // Function: w_calculator.wf_numtoobig() //-------------------------------------------------------------------- // Description: //-------------------------------------------------------------------- // Arguments: // string vs_num //-------------------------------------------------------------------- // Returns: boolean //-------------------------------------------------------------------- // Author: PB.BaoGa Date: 2021/07/05 //-------------------------------------------------------------------- // Usage: w_calculator.wf_numtoobig ( string vs_num ) //-------------------------------------------------------------------- // Copyright (c) PB.BaoGa(TM), All rights reserved. //-------------------------------------------------------------------- // Modify History: // //==================================================================== Integer li_len If LenA(vs_num) > 9 Then Beep(2) Return True Else Return False End If end function public subroutine wf_calc ();//==================================================================== // Function: w_calculator.wf_calc() //-------------------------------------------------------------------- // Description: //-------------------------------------------------------------------- // Arguments: //-------------------------------------------------------------------- // Returns: (none) //-------------------------------------------------------------------- // Author: PB.BaoGa Date: 2021/07/05 //-------------------------------------------------------------------- // Usage: w_calculator.wf_calc ( ) //-------------------------------------------------------------------- // Copyright (c) PB.BaoGa(TM), All rights reserved. //-------------------------------------------------------------------- // Modify History: // //==================================================================== String ls_num If Dec(is_prevnum) > 0 Then Choose Case is_sign Case '+' ls_num = String(Dec(is_prevnum) + Dec(is_num)) Case '-' ls_num = String(Dec(is_prevnum) - Dec(is_num)) Case '/' ls_num = String(Dec(is_prevnum) / Dec(is_num)) Case '*' ls_num = String(Dec(is_prevnum) * Dec(is_num)) End Choose Else ls_num = is_num End If wf_Trim(ls_num) If wf_NumTooBig(ls_num) Then Return is_num = ls_num istr_calc.dw.SetText(is_num) end subroutine public subroutine wf_trim (ref string rs_num);//==================================================================== // Function: w_calculator.wf_trim() //-------------------------------------------------------------------- // Description: //-------------------------------------------------------------------- // Arguments: // ref string rs_num //-------------------------------------------------------------------- // Returns: (none) //-------------------------------------------------------------------- // Author: PB.BaoGa Date: 2021/07/05 //-------------------------------------------------------------------- // Usage: w_calculator.wf_trim ( ref string rs_num ) //-------------------------------------------------------------------- // Copyright (c) PB.BaoGa(TM), All rights reserved. //-------------------------------------------------------------------- // Modify History: // //==================================================================== Integer li_len, i, li_dec, li_round If PosA(rs_num, '.') = 0 Then Return li_len = LenA(rs_num) For i = li_len To 1 Step -1 Choose Case MidA(rs_num, i, 1) Case '0' rs_num = ReplaceA(rs_num, i, 1, ' ') Case '.' rs_num = ReplaceA(rs_num, i, 1, ' ') Exit Case Else Exit End Choose Next rs_num = RightTrim(rs_num) If LenA(rs_num) < 9 Then Return li_dec = PosA(rs_num, '.') If li_dec = 0 Then Return li_round = 9 - li_dec rs_num = String(Round(Dec(rs_num), li_round)) end subroutine event open;istr_calc = Message.PowerObjectParm This.Y = istr_calc.Y This.X = istr_calc.X is_num = istr_calc.Value end event event deactivate;Close(This) end event on w_calculator.create this.cb_clear2=create cb_clear2 this.cb_7=create cb_7 this.cb_4=create cb_4 this.cb_1=create cb_1 this.cb_clear1=create cb_clear1 this.cb_8=create cb_8 this.cb_5=create cb_5 this.cb_2=create cb_2 this.cb_0=create cb_0 this.cb_dec=create cb_dec this.cb_3=create cb_3 this.cb_6=create cb_6 this.cb_9=create cb_9 this.cb_shift=create cb_shift this.cb_percent=create cb_percent this.cb_mult=create cb_mult this.cb_div=create cb_div this.cb_minus=create cb_minus this.cb_plus=create cb_plus this.cb_enter=create cb_enter this.r_1=create r_1 this.ln_1=create ln_1 this.ln_2=create ln_2 this.Control[]={this.cb_clear2,& this.cb_7,& this.cb_4,& this.cb_1,& this.cb_clear1,& this.cb_8,& this.cb_5,& this.cb_2,& this.cb_0,& this.cb_dec,& this.cb_3,& this.cb_6,& this.cb_9,& this.cb_shift,& this.cb_percent,& this.cb_mult,& this.cb_div,& this.cb_minus,& this.cb_plus,& this.cb_enter,& this.r_1,& this.ln_1,& this.ln_2} end on on w_calculator.destroy destroy(this.cb_clear2) destroy(this.cb_7) destroy(this.cb_4) destroy(this.cb_1) destroy(this.cb_clear1) destroy(this.cb_8) destroy(this.cb_5) destroy(this.cb_2) destroy(this.cb_0) destroy(this.cb_dec) destroy(this.cb_3) destroy(this.cb_6) destroy(this.cb_9) destroy(this.cb_shift) destroy(this.cb_percent) destroy(this.cb_mult) destroy(this.cb_div) destroy(this.cb_minus) destroy(this.cb_plus) destroy(this.cb_enter) destroy(this.r_1) destroy(this.ln_1) destroy(this.ln_2) end on type cb_clear2 from commandbutton within w_calculator integer x = 27 integer y = 20 integer width = 114 integer height = 108 integer taborder = 10 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "C" end type event clicked;is_num = '' is_prevnum = '' is_sign = '' istr_calc.dw.SetText(is_num) end event type cb_7 from commandbutton within w_calculator integer x = 27 integer y = 136 integer width = 114 integer height = 108 integer taborder = 70 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "7" end type event clicked;wf_numpress(This.Text) end event type cb_4 from commandbutton within w_calculator integer x = 27 integer y = 252 integer width = 114 integer height = 108 integer taborder = 110 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "4" end type on clicked;wf_numpress(this.text) end on type cb_1 from commandbutton within w_calculator integer x = 27 integer y = 368 integer width = 114 integer height = 108 integer taborder = 150 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "1" end type on clicked;wf_numpress(this.text) end on type cb_clear1 from commandbutton within w_calculator integer x = 155 integer y = 20 integer width = 114 integer height = 108 integer taborder = 20 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "CE" end type event clicked;is_num = '' istr_calc.dw.SetText(is_num) end event type cb_8 from commandbutton within w_calculator integer x = 155 integer y = 136 integer width = 114 integer height = 108 integer taborder = 60 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "8" end type on clicked;wf_numpress(this.text) end on type cb_5 from commandbutton within w_calculator integer x = 155 integer y = 252 integer width = 114 integer height = 108 integer taborder = 100 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "5" end type on clicked;wf_numpress(this.text) end on type cb_2 from commandbutton within w_calculator integer x = 155 integer y = 368 integer width = 114 integer height = 108 integer taborder = 140 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "2" end type on clicked;wf_numpress(this.text) end on type cb_0 from commandbutton within w_calculator integer x = 27 integer y = 484 integer width = 242 integer height = 108 integer taborder = 180 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "0" end type on clicked;wf_numpress(this.text) end on type cb_dec from commandbutton within w_calculator integer x = 283 integer y = 484 integer width = 114 integer height = 108 integer taborder = 190 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "." end type on clicked;wf_numpress(this.text) end on type cb_3 from commandbutton within w_calculator integer x = 283 integer y = 368 integer width = 114 integer height = 108 integer taborder = 160 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "3" end type on clicked;wf_numpress(this.text) end on type cb_6 from commandbutton within w_calculator integer x = 283 integer y = 252 integer width = 114 integer height = 108 integer taborder = 120 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "6" end type on clicked;wf_numpress(this.text) end on type cb_9 from commandbutton within w_calculator integer x = 283 integer y = 136 integer width = 114 integer height = 108 integer taborder = 80 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "9" end type on clicked;wf_numpress(this.text) end on type cb_shift from commandbutton within w_calculator integer x = 283 integer y = 20 integer width = 114 integer height = 108 integer taborder = 30 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "<" end type event clicked;is_num = LeftA(is_num, LenA(is_num) - 1) istr_calc.dw.SetText(is_num) end event type cb_percent from commandbutton within w_calculator integer x = 411 integer y = 20 integer width = 114 integer height = 108 integer taborder = 40 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "%" end type on clicked;is_num = String(dec(is_num) / 100) istr_calc.dw.SetText(is_num) end on type cb_mult from commandbutton within w_calculator integer x = 411 integer y = 136 integer width = 114 integer height = 108 integer taborder = 50 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "x" end type event clicked;wf_Calc() is_prevnum = String(Dec(is_num)) is_num = '' is_sign = '*' istr_calc.dw.SetText(is_prevnum) end event type cb_div from commandbutton within w_calculator integer x = 411 integer y = 252 integer width = 114 integer height = 108 integer taborder = 90 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "/" end type on clicked;wf_Calc() is_prevnum = String(Dec(is_num)) is_num = '' is_sign = '/' istr_calc.dw.SetText(is_prevnum) end on type cb_minus from commandbutton within w_calculator integer x = 411 integer y = 368 integer width = 114 integer height = 108 integer taborder = 130 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "-" end type on clicked;wf_Calc() is_prevnum = String(Dec(is_num)) is_num = '' is_sign = '-' istr_calc.dw.SetText(is_prevnum) end on type cb_plus from commandbutton within w_calculator integer x = 411 integer y = 484 integer width = 114 integer height = 108 integer taborder = 170 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "+" end type on clicked;wf_Calc() is_prevnum = String(Dec(is_num)) is_num = '' is_sign = '+' istr_calc.dw.SetText(is_prevnum) end on type cb_enter from commandbutton within w_calculator integer x = 27 integer y = 600 integer width = 498 integer height = 108 integer taborder = 200 integer textsize = -10 integer weight = 700 fontpitch fontpitch = variable! fontfamily fontfamily = swiss! string facename = "Arial" string text = "= Enter" end type event clicked;wf_Calc() Close(Parent) end event type r_1 from rectangle within w_calculator long linecolor = 16777215 integer linethickness = 9 long fillcolor = 12632256 integer width = 553 integer height = 728 end type type ln_1 from line within w_calculator long linecolor = 8421504 integer linethickness = 9 integer beginx = 549 integer endx = 549 integer endy = 728 end type type ln_2 from line within w_calculator long linecolor = 8421504 integer linethickness = 9 integer beginy = 724 integer endx = 549 integer endy = 724 end type |
uo_ddcalc from datawindow
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 | forward global type uo_ddcalc from datawindow end type end forward global type uo_ddcalc from datawindow integer width = 494 integer height = 360 integer taborder = 1 boolean livescroll = true event ue_dropdown pbm_dwndropdown end type global uo_ddcalc uo_ddcalc forward prototypes public subroutine uf_show_ddcalc () end prototypes public subroutine uf_show_ddcalc ();//==================================================================== // Function: uo_ddcalc.uf_show_ddcalc() //-------------------------------------------------------------------- // Description: //-------------------------------------------------------------------- // Arguments: //-------------------------------------------------------------------- // Returns: (none) //-------------------------------------------------------------------- // Author: PB.BaoGa Date: 2021/07/05 //-------------------------------------------------------------------- // Usage: uo_ddcalc.uf_show_ddcalc ( ) //-------------------------------------------------------------------- // Copyright (c) PB.BaoGa(TM), All rights reserved. //-------------------------------------------------------------------- // Modify History: // //==================================================================== str_calculator lstr_calc Integer li_pos, li_calc_height, li_x, li_y String ls_col window lw_parent environment env GetEnvironment(env) SetPointer(HourGlass!) li_calc_height = 737 ls_col = This.GetColumnName() li_x = This.X li_y = This.Y lw_parent = Parent lstr_calc.X = lw_parent.WorkSpaceX() + li_x + Integer(This.Describe(ls_col + ".X")) - 2 lstr_calc.Y = lw_parent.WorkSpaceY() + li_y + Integer(This.Describe(ls_col + ".Y")) & + Integer(This.Describe(ls_col + ".Height")) + 12 /* Check for calculator off bottom of workspace */ If (lstr_calc.Y + li_calc_height) > (env.ScreenWidth + env.ScreenHeight ) Then lstr_calc.Y -= (Integer(This.Describe(ls_col + ".height")) + li_calc_height + 4) End If lstr_calc.window = Parent lstr_calc.dw = This lstr_calc.column = ls_col lstr_calc.Value = This.GetText() OpenWithParm(w_calculator, lstr_calc) This.SetColumn(ls_col) end subroutine on uo_ddcalc.create end on on uo_ddcalc.destroy end on |
Example demo
w_main from window
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 | forward global type w_main from window end type type dw_1 from uo_ddcalc within w_main end type end forward global type w_main from window integer width = 1431 integer height = 544 boolean titlebar = true string title = "Dropdown Calculator" boolean controlmenu = true boolean minbox = true long backcolor = 67108864 string icon = "AppIcon!" boolean center = true dw_1 dw_1 end type global w_main w_main on w_main.create this.dw_1=create dw_1 this.Control[]={this.dw_1} end on on w_main.destroy destroy(this.dw_1) end on event open;dw_1.insertrow(0) end event type dw_1 from uo_ddcalc within w_main integer x = 256 integer y = 96 integer width = 914 integer height = 208 integer taborder = 10 string dataobject = "d_numeric" boolean border = false end type event ue_dropdown;call super::ue_dropdown;//call dropdown calculator Choose Case This.GetColumnName() Case "cost", "qty" uf_show_ddcalc() Return 1 End Choose end event |
datawindow d_numeric
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | release 10.5; datawindow(units=0 timer_interval=0 color=80269524 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 110 print.margin.right = 110 print.margin.top = 97 print.margin.bottom = 97 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 ) header(height=0 color="536870912" ) summary(height=4 color="536870912" ) footer(height=0 color="536870912" ) detail(height=192 color="536870912" ) table(column=(type=decimal(2) updatewhereclause=no name=cost dbname="cost" ) column=(type=decimal(2) updatewhereclause=no name=qty dbname="qty" ) ) column(band=detail id=1 alignment="1" tabsequence=10 border="5" color="33554432" x="242" y="16" height="68" width="539" format="#,##0.00" html.valueishtml="0" name=cost visible="1" ddlb.limit=0 ddlb.allowedit=yes ddlb.case=any ddlb.nilisnull=yes ddlb.useasborder=yes font.face="Arial" font.height="-8" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" ) column(band=detail id=2 alignment="1" tabsequence=20 border="5" color="33554432" x="242" y="108" height="68" width="539" format="#,##0.00" html.valueishtml="0" name=qty visible="1" ddlb.limit=0 ddlb.allowedit=yes ddlb.case=any ddlb.nilisnull=yes ddlb.useasborder=yes font.face="Arial" font.height="-8" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1090519039" ) text(band=detail alignment="1" text="Cost" border="0" color="33554432" x="78" y="16" height="56" width="133" html.valueishtml="0" name=effective_date_t visible="1" font.face="Arial" font.height="-8" font.weight="700" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=detail alignment="1" text="Qty" border="0" color="33554432" x="78" y="108" height="56" width="133" html.valueishtml="0" name=expiry_date_t visible="1" font.face="Arial" font.height="-8" font.weight="700" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) htmltable(border="0" ) 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!