Button btnCancel = new Button(composite1, SWT.NONE);
btnCancel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
btnCancel.setText("cancel");
shell.pack();
new Label(shell, SWT.NONE);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {