RE: WS_CHILD
- Posted by Jonas Temple <jktemple at yhti.net> Aug 23, 2001
- 444 views
Jon Snyder wrote: > How come when i create a child window like this, > > constant > WIN = create( Window, "Parent", 0,0,300,300,0), > CHILD = create( Window, "Child", 10,10,100,100, WS_CHILD) > > and then open the child window, the child window looks like it isn't > active?(The top bar is gray) Is there a way to make the window active? Jon, This might be a hack but after I use openWindow to open a child window I immediately use setFocus to set the focus to the child window. That seems to do the trick. Jonas