Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[platform-swt-dev] Re: Activating SWT app in taskbar [solved using shell.forceActive()]

Nick,
This works perfectly in windows 2000 professional.
In fact the 
  shell.forceActive();
seems to work fine to get the application to blink in the taskbar
without popping up over other windows.

Cheers,
Benjamin



Message: 3
To: platform-swt-dev@xxxxxxxxxxx
Subject: Re: [platform-swt-dev] Activating SWT app in taskbar
From: Nick Edgar <Nick_Edgar@xxxxxxxxxx>
Date: Mon, 21 Feb 2005 13:36:31 -0500
Reply-To: platform-swt-dev@xxxxxxxxxxx

The following pattern seems to be used in Debug and a few other places in
Eclipse code:

       Shell shell = ...;
       shell.setMinimized(false);
       shell.forceActive();

Nick

Steve Northover/Ottawa/IBM@IBMCA
Sent by: platform-swt-dev-admin@xxxxxxxxxxx
02/21/2005 01:20 PM
Please respond to
platform-swt-dev


Back to the top