码迷,mamicode.com
首页 > 数据库 > 详细

Adding List Item Element At Runtime In Oracle Forms

时间:2016-12-26 00:14:08      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:www   text   end   oracle   ott   webkit   lis   ace   isp   

Add combo list / drop down list item element at runtime in Oracle forms.

Syntax

PROCEDURE ADD_LIST_ELEMENT
(list_name VARCHAR2,
list_index, NUMBER
list_label VARCHAR2,
list_value NUMBER);

Example

Declare
  nElmntCount Number;
Begin
   -- First count the total list element currently in list item 
   nElmntCount := Get_list_element_count(‘yourlist‘);
   -- Then add it by adding + 1 to total count element 
   Add_list_element(‘yourlist‘, nElmntCount + 1, ‘A Value‘, ‘A Value‘);
End;

See also:
http://www.foxinfotech.in/2013/04/adding-value-combolist-runtime-oforms.html

技术分享


 

Adding List Item Element At Runtime In Oracle Forms

标签:www   text   end   oracle   ott   webkit   lis   ace   isp   

原文地址:http://www.cnblogs.com/quanweiru/p/6220608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!