TempTabel Field on the screen

sebouh181

New Member
Hi,

I have a temp table, independent of the database (that is the temp table schema does not exists in the database).
I want to create textboxes on the screen databinded to these fields temp table fields.
Is there a way to do so?????

thanks in advance
 
Use the 4GL, simply do something like:DO WITH FRAME {&FRAME-NAME}: ASSIGN widgetName:SCREEN-VALUE = TempTableValue .END. /* frame */
 
Back
Top