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.
|