Hide border of window, if I know a handle of this window?

You might try using SetWindowLong() but I don't know if the effect is going to be what you are looking for.

Up vote 0 down vote favorite share g+ share fb share tw.

I have already OLE Embedded object Excel Chart. And, when I create this object, I have some problem in project, when I'm resizing window. Using Spy++ I see two process: Excel 7 and Excel 9.

Excel 9 contain "trash" in right part, and when I resizing window I can see undefined behaviour. On the following picture you can see a border, which I want to hide. How I can hide this border, if I known handle of window?

C++ winapi com ole link|improve this question edited Apr 26 '11 at 19:24Clifford16.3k1030 asked Apr 26 '11 at 8:58G-71427415 94% accept rate.

You might try using SetWindowLong(), but I don't know if the effect is going to be what you are looking for. SetWindowLong(win_handle, GWL_STYLE, GetWindowLong(win_handle, GWL_EXSTYLE) | WS_EX_TOPMOST); ShowWindow(win_handle, SW_SHOW).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions