Question How To Get Down Frame Items Handle

Norbert Himer

New Member
Hey All!

There is a big problem. I can not get a handle Down Frame elements of the current row.

for example:
work for good direct mode:
Code:
form
  space(5)
  bol
with frame a down width 80 three-d.

on entry of frame a
do :

  message  string(bol:handle).

end.

Result when down: 1656,1657,1658, etc.
but that's not good, because I can not write at hundreds of frames has individually


It would be so good:
Code:
on entry of frame a
do :
  define variable h-frame  as handle no-undo.
  define variable h-widget as handle no-undo.
 
  h-frame = ?.
  h-widget = ?.

  h-frame = frame a:handle.
  h-widget = h-frame:first-child.
  h-widget = h-widget:first-child.


  message h-widget.
 
   end.
but the result is always: 1656 ,every time can run the process.

Why?
 
Last edited:
From what you describe it is not clear to me what it is that you want to achieve. Also, please put your code between CODE tags like that

Code:
/* My code */
assign someThing = "xyz4711".

It makes it much better readable.

Heavy Regards, RealHeavyDude.
 
Back
Top