MDI question

  • Thread starter Thread starter Maileen
  • Start date Start date
M

Maileen

Hi,

I have a FMain form which is a MDI container form.
after I have 2 forms FCustomer and FPrice which should be displayed
inside my FMain MDI form.

However, I don't want to have some side effect of MDI-childform behaviors.

1. how can i avoid that my FMain form display in his text : MyApp -
[Customer], when I open FCustomer form as childform ?

2. how can i avoid that all my childforms have icon, minimize, maximize
and close buttons when they are displayed inside my MDI form ?
I set to flase "minimize", "maximize" bu nothing changed.

thanks a lot,

Maileen
 
Maileen said:
Hi,

I have a FMain form which is a MDI container form.
after I have 2 forms FCustomer and FPrice which should be displayed
inside my FMain MDI form.

However, I don't want to have some side effect of MDI-childform behaviors.

1. how can i avoid that my FMain form display in his text : MyApp -
[Customer], when I open FCustomer form as childform ?

2. how can i avoid that all my childforms have icon, minimize, maximize
and close buttons when they are displayed inside my MDI form ?
I set to flase "minimize", "maximize" bu nothing changed.

thanks a lot,

Maileen

AFAIK you can't. It's default windows behaviour. If those are the only 2
forms you're going to display (i.o.w. just one instance of each), you
may concider forgetting the MDI approach and using something like a
tabpage control.
 
Back
Top