Link to home
Start Free TrialLog in
Avatar of alanrogerson2
alanrogerson2

asked on

Delphi Interface like MS Outlook with Multiple documents open at once

I would like to develop an application that has the same structure as Outlook in terms of being able to have multiple email sopen at once and use alt-tab to switch between the documents and to be able to see a list in the taskbar at the bottom.  I thought this would be using MDI in Delphi but this just seems to allow multiple child forms open inside a parent form, and alt-tab switching doesn't seem possible.  Does anyone know how this can be achieved?
Avatar of 2266180
2266180
Flag of United States of America image

you will use SDI, which is the default in delphi.
just create your main form and then create another form, for the email. go to project options and remove it from the aut creation list.

then, whenever you want to creatopen a new email do (pseudo code):

anemailform:=theemailform.create(application);
emailforms.add(anemailform);// this is a list of email forms so that you can keep track of them in an easy fashion.
anemailform.loademail(whatever);

so basically your applicaiton will have at least 2 forms:
- the main form, created automatically
- the email form, created manually, from code.

and then tehre can be any number of forms for configuration and stuff like that.
Avatar of alanrogerson2
alanrogerson2

ASKER

Thanks for your help.

I have done this but it doesn't list the forms as separate forms that you can alt-tab between.  Do you think it should?
now I understand what you mean. sorry, got confused the first time.

I don't have outlook so I would like you to make a small test for me:
- open outlook with one email. look at the processlist in task manager (specfically the processes number from the status bar)
- open another email. check the processes number. did it grow with 1 unit? if so, do you have another outlook process there?
if the answers are yes, then the explanation and your solution is simple:
- launch your application with a parameter like "myapp.exe /email=whatever" then in the dpr check for the parameter:
if pos('/email',paramstr(1))>0 then
  application.createform(temailform, emailform)
else
  application.createform(tmainform, mainform);

if there is no new process for an email, it becomes a little more complicated.
to get the window to appear in the taskbar place the following line in the email form oncreate event:
  setwindowlong(handle, GWL_EXSTYLE, getwindowlong(handle, GWL_EXSTYLE) or WS_EX_APPWINDOW );

for solving the alt-tab thing I have no suggestions. but I have an idea.
install windowse (http://www.greatis.com/delphicb/windowse/)
open an email window from outlook and start windowse then and on the window tab look at the style and extended style values. better yet, make a screenshot and post it here. I will then make some tests with those styles to see which one is used. but there is a chance that this behaviour is not done via window styles, in which case it will become pretty hard to figure out what it is.

I have got the forms to appear in a list on the taskbar... Thanks for that.  Now all I need to solve is how to be able to Alt-Tab between them.  I attach a screenshot from WinDowse...
 
screenshots.doc
I meant to say that outlook.exe did not increment number of processes when i opened up a new email.  All emails seem to be generated by a single process yet windows let's the user switch between them as though they are different programs.
ASKER CERTIFIED SOLUTION
Avatar of 2266180
2266180
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
also, anotehr aricle you might want to read on: http://www.delphi3000.com/articles/article_1493.asp?SK=
Thanks very much. This works.  You are very clever!