Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[swtbot-dev] display text in text box

 

I am trying to add a text box so the user can enter in their name in the text area in swt. I can get the box displayed but when I type in anything it will not display it in the text box. I have been at it for days and am getting no where, can any body help me? This is my code for it:

  final Text text3 = new Text(p1, SWT.BORDER);
  text3.setBounds(600, 500, 50, 50);
  p1.pack();

Thanks in advance, Ann


Back to the top