PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → Refreshing ?
Refreshing ?
Started by Glenn Rathke, Jul., 01 2005 5:44 PM - 2 replies
Posted on July, 01 2005 - 5:44 PM
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
Posted on July, 01 2005 - 11:25 PM
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
Posted on July, 02 2005 - 1:02 AM
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