Re: MS Word 2003 like MDI component
- From: "JED" <nospam@xxxxxxxxxx>
- Date: 11 May 2008 18:16:01 -0700
Yogi Yang 007 wrote:
I want to implement MDI functionality similar to what is found in MS
Office 2003 apps. Where in every document opens in its own separate
window.
Is there any component available for such functionality?
You don't need a component to do this functionality.
Just override the CreateParams method and include WS_EX_APPWINDOW in
the ExStyle value.
ie.
procedure TMyForm.CreateParams(var Params: TCreateParams);
begin
inherited;
Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW;
end;
--
JSDialog Pack - TaskDialog for other operating systems:
http://www.jed-software.com/jsd.htm
Visual Forms IDE Add In: http://www.jed-software.com/vf.htm
Blog: http://blog.jed-software.com
.
- Follow-Ups:
- Re: MS Word 2003 like MDI component
- From: Yogi Yang
- Re: MS Word 2003 like MDI component
- References:
- MS Word 2003 like MDI component
- From: Yogi Yang 007
- MS Word 2003 like MDI component
- Prev by Date: Re: TurboPower library NNTP newsgroups
- Next by Date: Re: TurboPower library NNTP newsgroups
- Previous by thread: MS Word 2003 like MDI component
- Next by thread: Re: MS Word 2003 like MDI component
- Index(es):
Relevant Pages
|