Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-ui-dev] Adding tooltip for Combo(eclipse 3.0)

Hi,
Sorry for that spelling mistake in the mail. Actually, I have coded as :
cboActionValue .setToolTipText("Tooltip for combo");
Still the problem persists.

Thanks,
Anagha

On 10/25/05, Alelekov, Igor <igor.alelekov@xxxxxxxxx> wrote:

Hi,

 

Check you code.

You set tooltip  for the one Combo (cboActionType), but wait it for another (cboActionValue).

 

Regards,

Igor

 


From: platform-ui-dev-bounces@xxxxxxxxxxx [mailto:platform-ui-dev-bounces@xxxxxxxxxxx] On Behalf Of Anagha
Sent: Tuesday, October 25, 2005 3:51 PM
To: platform-ui-dev@xxxxxxxxxxx
Subject: [platform-ui-dev] Adding tooltip for Combo(eclipse 3.0)

 


Hi All,
I'm using eclipse3.0 on RedHat linux (9). I'm not able to set the toooltip for the simple combo like this :
cboActionValue = new Combo(grpPDPInfo, SWT.DROP_DOWN | SWT.READ_ONLY);
 gd = new GridData();
 gd.widthHint = IConstants.MIN_PHRASE_WIDTH;
 gd.horizontalSpan = 2;
 cboActionValue.setLayoutData(gd);
 cboActionValue.setEnabled(false);

cboActionType.setToolTipText("Tooltip for combo");

Is this any version problem? Pls. help.
--
Thanks & Regards,
Anagha


_______________________________________________
platform-ui-dev mailing list
platform-ui-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-ui-dev





--
Thanks & Regards,
Anagha

Back to the top