[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.platform.swt] Re: Label as a TabStop

Labels are not capable of receiving focus and are therefore left out of the
tab order.

Instead, try:
Text t = new Text(shell, SWT.READ_ONLY);

// Please ignore my previous post, I seem to keep hitting Alt+S by
accident - this comes from switching between Windows and Mac OS X all the
time.