data = new FormData();
data.top = new FormAttachment(combo, 10);
data.left = new FormAttachment(0, 2);
periodLabel.setLayoutData(data);
startPeriodText = new DateText(studentComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
startPeriodText.setValue(new GDDate().getDate());
startPeriodText.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(combo, 10);
data.left = new FormAttachment(idText, 5);
startPeriodText.setLayoutData(data);
final Label atLabel = new Label(studentComposite, SWT.NULL);
atLabel.setText("�");
atLabel.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(combo, 10);
data.left = new FormAttachment(startPeriodText, 10);
atLabel.setLayoutData(data);
endPeriodText = new DateText(studentComposite, SWT.SINGLE | SWT.BORDER | SWT.READ_ONLY);
endPeriodText.setValue(new GDDate().getDate());
endPeriodText.setEnabled(true);
data = new FormData();
data.top = new FormAttachment(combo, 10);