does anyone know where to put code that i need executed exactly one time after all of the controls in a window are created? i don't think its safe to put in the WM_CREATE of the form (is it?) as i don't know if all the children are created at this point.
tia,
don
If you look in the generated code the call to [formname]_CreateControls(hWndForm) comes right before FF_nResult = [formname]_WM_CREATE (hWndForm)
sounds safe to me...
thanks! duh, i should have just looked at the source.
i appreciate the help.
--don