1. RE: How to hide window's task bar?
Martin Stachon wrote:
>
> ----- Original Message -----
> From: "Liu Junfeng" <rufi at 163.com>
> To: "EUforum" <EUforum at topica.com>
> Subject: How to hide window's task bar?
>
> > How to hide a window's task bar (not show in taskbar)?
> > Does it has relation with window's style?
>
> API says :
>
> A taskbar button is placed on the taskbar whenever an application
> creates a unowned
> primary window. To ensure that the window button is placed on the
> taskbar, create the
> window by calling CreateWindowEx and include the WS_EX_APPWINDOW style.
> To prevent the
> window button from being placed on the taskbar, create the window by
> calling
> CreateWindowEx and include the WS_EX_TOOLWINDOW style. As an
> alternative, you can create a
> hidden window and make it the owner of your primary window.
>
> -- Martin
>
>
Thank you, I used the WS_EX_TOOLWINDOW style, it works.
Euphoria is one of my favorite languages!
2. RE: How to hide window's task bar?
I used the WS_EX_TOOLWINDOW, but strangely the onDragAndDrop event is
not allowed, then I am forced to create another window used as a parent
window.
Liu Junfeng wrote:
>
> Martin Stachon wrote:
> >
> > ----- Original Message -----
> > From: "Liu Junfeng" <rufi at 163.com>
> > To: "EUforum" <EUforum at topica.com>
> > Sent: Saturday, March 08, 2003 10:59 AM
> > Subject: How to hide window's task bar?
> >
> > > How to hide a window's task bar (not show in taskbar)?
> > > Does it has relation with window's style?
> >
> > API says :
> >
> > A taskbar button is placed on the taskbar whenever an application
> > creates a unowned
> > primary window. To ensure that the window button is placed on the
> > taskbar, create the
> > window by calling CreateWindowEx and include the WS_EX_APPWINDOW style.
> > To prevent the
> > window button from being placed on the taskbar, create the window by
> > calling
> > CreateWindowEx and include the WS_EX_TOOLWINDOW style. As an
> > alternative, you can create a
> > hidden window and make it the owner of your primary window.
> >
> > -- Martin
> >
> >
> Thank you, I used the WS_EX_TOOLWINDOW style, it works.
>
> Euphoria is one of my favorite languages!
>
>
Euphoria is one of my favorite languages!