I neeed to give status while a program is running using Message or Display but anothr program is running and my message is behind this windows. Is there a way to force the message to display on top?
You can use the WinActivate or WindowOnTop functions to make a window appear at the top of the z order.
WindowOnTop("",1)
Message("On Top", "I am a topmost Window")
WindowOnTop("",0)