Current version: 1.7.3

Features

  • Display enhanced LOVs with the Look & Feel decoration

  • Display enhanced Alert Boxes with more than 3 options

  • Handle menus at runtime (add, enable, disable, show, hide, remove options)

  • Handle frames at runtime (add, move, modify, hide)

  • Play pre-loaded sounds

  • Receive external asynchronous messages

  • Draw texts anywhere on the screen

  • Display input dialogue boxes

  • JColorChooser
    All features list


Version 1.7.3 comes with the following changes:

 - table-block copy/paste to/from clipboard.

You can export a table-block content to the clipboard as delimited text. You can also populate a table-block with the content of the clipboard. You can copy/paste the entire data-block column list but also a selection.

The laf.pll has been updated to include two new procedures in the PKG_TOOL package:


 PROCEDURE Paste_to_block
 (
    PC$Block    in varchar2
   ,PC$Bean     in varchar2
   ,PB$Header   in boolean default FALSE
   ,PN$From     in pls_integer default 1
   ,PC$Items    in varchar2 default null
   ,PC$FieldSep in varchar2 default CHR(9)
 ) ; 
 
 PROCEDURE Copy_From_block
 (
    PC$Block    in varchar2
   ,PC$Bean     in varchar2
   ,PB$Header   in boolean default FALSE
   ,PN$From     in pls_integer default 1
   ,PC$Items    in varchar2 default null
   ,PC$FieldSep in varchar2 default CHR(9)
 ) ;

         Read more details in the Look & Feel Developer Guide (page 18 and 19).

         Test the new /fmb/test_laf_copy_paste_block.fmb sample dialog.
         It uses a table derived from the USER_TABLES view from the following SQL order:

create table USR_TABLES as select * from user_tables where rownum <=100;

Re-compile the laf.pll

See the old version new features.

Oracle Forms Look and Feel Project created by Francois Degrelle