Hi,
I want the ability to close a window opened by one of my apps while i'm in another application. I can do this with the following:
SendMessage( FindWindow( 0, "Customer View" ), WM_CLOSE )
However, I want to change the title of the customer view window to display the customers name, so in my other app, I will no longer know what the name of the window is.
Is there a way of doing a wild search to find the window handle (like "Customer View*" - my window will always start with Customer View)
Thanks in advance
Pete