Mastodon
Programmierung

IDE: Code Param window is gone

Hi there,

I had the same problem and I started digging in Delphi. You belive or not
the code param window is there, but it is sometimes BEHIND the editor
window. You can see it if You resize the editor window to be very thin and
test when a wide CodeParamWindow should appear, it will be there BEHIND the
editor window.
That is the reason why You don’t see it when You should.

Try the code below (this will make the CodeParamWindow stay on top, it won’t
be able to “hide” again)
It is built in some of my experts:

SetWindowPos(FindWindow(‘TTokenWindow’,’CodeParamWindow’),HWnd_TopMost,0,0,0
,0,swp_NoMove+swp_NoSize);
//
SetWindowPos(FindWindow(nil,’CodeParamWindow’),HWnd_TopMost,0,0,0,0,swp_NoMo
ve+swp_NoSize);

(tested in Delphi5)

Cheers,

BencE

0 Kommentare zu “IDE: Code Param window is gone

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht.