parent dialog accessing from a child dialog
-
pass the
this
pointer of the parent class to the child. cheers..Milton Kb -
Are you sure you want to do this? It's considered bad OO design for a child object to operate on items belonging to its parent. Consider sending the parent a message instead.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
Are you sure you want to do this? It's considered bad OO design for a child object to operate on items belonging to its parent. Consider sending the parent a message instead.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
-
pass the
this
pointer of the parent class to the child. cheers..Milton Kb