I need to confirm: Once child window controls are created on a dialog, there is no way to alter their zorder without affecting their tab order, right?
From what I can see (and read), the zorder and tab order are essentially the same thing except that the tab order only applies to child windows with the %WS_TABSTOP style set.
I have tried creating the child windows based on tab order and then using SetWindowPos to change zorder but doing so causes the tab order to change.
I am thinking that I will only be able to correctly set zorder for non tabstop child windows (like STATIC). Once I start trying to set the zorder for WS_TABSTOP windows then things start to get weird.
Did any of that make sense?
From what I can see (and read), the zorder and tab order are essentially the same thing except that the tab order only applies to child windows with the %WS_TABSTOP style set.
I have tried creating the child windows based on tab order and then using SetWindowPos to change zorder but doing so causes the tab order to change.
I am thinking that I will only be able to correctly set zorder for non tabstop child windows (like STATIC). Once I start trying to set the zorder for WS_TABSTOP windows then things start to get weird.
Did any of that make sense?
Comment