FullScreen

Hi!


IDEDialog1.Execute;
How to start maximize the window ?
Hello,

In the OnCreateEditor event place these lines at the end:
if Sender is TForm then
    TIDEEditorForm(Sender).WindowState := wsMaximized;

Regards,

Yogesh

Ok. Thank. 

OnCreateEditor is non visual event.
i got it