Change value of text item at run-time [message #200343] |
Mon, 30 October 2006 07:18 |
orafan2003
Messages: 122 Registered: February 2006
|
Senior Member |
|
|
Hi,
I have a text item. I changed the label dynamically at run-time like this.
item_id13 := find_item('manu_order.text_item87');
select value into m FROM form_translation where key='(ALL FIELDS ARE MANDATORY)' and lang='FR';
set_item_property(item_id13,PROMPT_TEXT,m);
Now I want to change the value of that text item dynamically. How can I do this?
Also, there is a list-item. I want to change this dynamically at run-time. How can I do this?
|
|
|
Re: Change value of text item at run-time [message #200382 is a reply to message #200343] |
Mon, 30 October 2006 10:42 |
sanka_yanka
Messages: 184 Registered: October 2005 Location: Kolkata
|
Senior Member |
|
|
Just Assign the value you want to display on that field.
For list item also it should work.
For Example if you want to assign a value at runtime in manu_order.text_item87 then write it like
manu_order.text_item87 := 'Hello World';
or manu_order.text_item87 := varVariableName;
Regrads
Sanka
[Updated on: Mon, 30 October 2006 10:45] Report message to a moderator
|
|
|
Re: Change value of text item at run-time [message #200422 is a reply to message #200382] |
Mon, 30 October 2006 19:48 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Do you mean you want to change the list associated with the list item? If yes, then you need to 'create' a 'record_group' (make sure to test whether is exists and 'delete' it before executing the 'crete' a second time), populate it (add, and associate it with your item. Search for 'create_group' and 'delete_group' in the documentation and this forum.
David
|
|
|