How to dynamically increase the frame variables?

Example

form
variabl1
variable 2
with frame frm_name.

now the frame contains only two variable...
suppose i like to display the variables var3 var4 and var5 with frame frm_name at run time,......
how to do that. ???????????
 

joey.jeremiah

ProgressTalk Moderator
Staff member
actually these are widgets. the variables values are displayed in those widgets.

widgets like frames, fill-ins, combos ... that is everything that makes up your user interface can be created dynamically that is at run-time.

theres a whole chapter, or two about widgets in the programming handbook which you could download @psdn.com

i would recommend starting there. good luck :)
 

lord_icon

Member
If trying to assign / alter height, length or other attributes. Simply follow this process:

DO WITH FRAME {&FRAME-NAME}:

ObjectName:ATTRIBUTE = VALUE.

END.
 
Top