|
The parent form has an edit control TRichEdit, and the parent form's FormStyle = fsStayOnTop. Now a new child form (not a multi-document form) is opened. It is required that this form always floats on the parent form, and It cannot be a modal form. In fact, it is similar to the effect of opening the TFindDialog form on the edit form. This can be achieved in C # with the following code:
Form dlgFind = new Form ();
AddOwnedForm (dlgFind);
dlgFind.Show ();
But I don't know how to achieve it in CBC. |
|