Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on a delphi program using the TRibbon and launching separate exe files. Once I have executed the external application (with CreateProcessA() ) I set its parent as the form with the ribbon:

wHandle := FindWindow('MainRibbonForm');
Winapi.Windows.SetParent(wHandle,self.Handle);

All considered, this works alright, but the problem is that the application forms can be moved over the TRibbon in the main form. I was thinking about restricting the form's movement within the main application but how can I take into account the ribbon?

share|improve this question
I'm not shure having understood your wishes. Something like placing the external Window maximized on a Panel and setting borderstyle to bsNone? – bummi Nov 4 '12 at 9:18

1 Answer

up vote 3 down vote accepted

Place a TPanel as a container on your Form and use this TPanel as Parent. Now the Child can only move inside the TPanel.

wHandle := FindWindow( 'MainRibbonForm' );
SetParent( wHandle, MyContainerPanel.Handle );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.