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,

 

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


Back to the top