hey, i searched everywhere, i want to use ShowWindow(SW_SHOWMINNOACTIVE) but i want the window to be maximized and using something like this:

ShowWindow(SW_SHOWMINNOACTIVE);
ShowWindow(SW_MAXIMIZE);

or:

ShowWindow(SW_MAXIMIZE);
ShowWindow(SW_SHOWMINNOACTIVE);

just doesn't work, i want to show the window maximized and minimized without any focus taken and i also don't want to see a maximized window going minimized as fast as possible, i want it to be maximized before really showing the window minimized.

im looking for something like SW_SHOWMINMAXNOACTIVE but there is no such thing i guess..

any ideas?

thanks