Controlling the Z-index of controls (OpenInsight 32-bit Specific)
At 24 AUG 2003 11:43:27PM Andrew M Matthews wrote:
Hi all,
Is there anyway I can control the Z-index of a control? Ie, if two control occupy the same area, can I control which control is at the fore, and which control is at the back?
What I am trying to do is make static textboxes appear on top of a group box border, but the border shows through, which is annoying.
Has anyone had this problem, or can anyone suggest a solutions?
Cheers,
Andrew Matthews
iTMS Software
At 25 AUG 2003 08:59AM Donald Bakke wrote:
Andrew,
Is there anyway I can control the Z-index of a control? Ie, if two control occupy the same area, can I control which control is at the fore, and which control is at the back?
This doesn't always work as expected but try this code:
hWnd=Get_Property(Control, "HANDLE")
BringWindowToTop(hWnd) ; * WinAPI command
dbakke@srpcs.com