[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] pocket PC - ScrollBar.setVisible()

Hi,

does the method setVisible() apply to scrollbars in the PocketPC? I cannot
make a Scrollbar hide itself on this platform. eg.

  Composite scroller = new Composite(shell,SWT.NO_FOCUS | SWT.V_SCROLL);
  ScrollBar vbar = scroller.getVerticalBar();
  vbar.setVisible(false);
  shell.layout(true);

On the pocket pc 2003 with j9 CDC, the setVisible(false) call has no effect
for me. Works fine on the desktop of course. Generally speaking, is there a
way for me find out when an individual method is not implemented on the
pocket pc platform?

thanks,
Andy