PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Refreshing ?
Refreshing ?
Iniciado por Glenn Rathke, 01,jul. 2005 17:44 - 2 respuestas
Publicado el 01,julio 2005 - 17:44
I have a parent table, child table, and grandchild table. Upon entering the window the first time, the Parent table is filled, the Child table displays records, but the grandchild does not display any records. If I select a child record, then the grandchild table displays the approproiate records.
How can I et trhe grandchild records to dsiplay when first entering the window.
Thanks
Glenn
Publicado el 01,julio 2005 - 23:25
In the child table>code>rowselection of child table
HFilter(grandchildtable,KeyfieldID,childtable.keyfieldID)
TableDisplay(TableGrandChild,taStart)
This might help.
Bert
I have a parent table, child table, and grandchild table. Upon entering the window the first time, the Parent table is filled, the Child table displays records, but the grandchild does not display any records. If I select a child record, then the grandchild table displays the approproiate records.
How can I et trhe grandchild records to dsiplay when first entering the window.
Thanks
Glenn
Publicado el 02,julio 2005 - 01:02
As I stated previously, the grandchild table displays just fine after the initial startup when ever I select a child row. I've already implemented the code sample you offered.
What I did was after the Winndow gains focus I call that same code again, and all is fine.
Thanks for the help !
Glenn
In the child table>code>rowselection of child table
HFilter(grandchildtable,KeyfieldID,childtable.keyfieldID)
TableDisplay(TableGrandChild,taStart)
This might help.
Bert
I have a parent table, child table, and grandchild table. Upon entering the window the first time, the Parent table is filled, the Child table displays records, but the grandchild does not display any records. If I select a child record, then the grandchild table displays the approproiate records.
How can I et trhe grandchild records to dsiplay when first entering the window.
Thanks
Glenn