Resize OptionsPage in outlook 2010

Add-in Express™ Support Service
That's what is more important than anything else

Resize OptionsPage in outlook 2010
 
Karim




Posts: 170
Joined: 2006-01-02
Hi,

In outlook 2010 OptionsPage is smaller then in Outlook 2007
and I would like to enlarge but i can't.


I find and i try this methode but I have the impression that the window is limited to a maximum size.

TMyOptionsPage = class(TActiveForm, IADX_OptionsPageXP, PropertyPage)
private
FLock: boolean;
procedure WMSize(var Message: TWMSize); message WM_SIZE;
...
end;

...

procedure TMyOptionsPage.WMSize(var Message: TWMSize);
begin
inherited;
if not FLock then begin
FLock := True;
try
Width := Width + 50;
finally
FLock := False;
end;
end;
end;
Posted 27 May, 2010 11:28:47 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Karim,

Yes, you are right, the Outlook window that contains your options page has a limited size and cannot be resized.
Posted 28 May, 2010 07:06:41 Top