How to try demo version
=======================

Add library to your application
    * Open the application painter in your PowerBuilder IDE
    * Open the application property window
    * Select "Libraries" tab
    * Click "Browse" button
    * Type in "File name" field: *.pbd and press Enter
    * Select dwcfilter_pb?.pbd library and click "Open" button
    * Click "OK" button for closing the application property window

Write this script in your commandbutton click event:
//Example 1. Using DWCFilter object for invoke filter window.
    n_cst_dwc_filter lnvo_filter   

    lnvo_filter = create n_cst_dwc_filter

    lnvo_filter.of_filter(dw_1) //dw_1 - refer to your DataWindow

    if lnvo_filter.ib_ok then
       //Some process after user click "OK" button
    elseif lnvo_filter.ib_clearfilter then
       //Some process after user click "Clear filter" button
    end if    

    destroy lnvo_filter

//Example 2. Using global function for invoke filter window.
    integer li_ret

    li_ret = f_dwc_filter(dw_1) //dw_1 - refer to your DataWindow

    if li_ret = 1 then
     //Some process after user click "OK" button
    elseif li_ret = 2 then
     //Some process after user click "Clear filter" button
    end if


If you have any problems with using this demo, please contact us. We will help you.
   Home pgae: http://www.dwcfilter.com
   Support: support@dwcfilter.com