bottonLData.verticalAlignment = GridData.FILL;
bottonLData.grabExcessVerticalSpace = true;
customContainer.setLayoutData(bottonLData);
customContainer.setLayout(buttonLayout);
{
headLabel = new CLabel(customContainer, SWT.NONE);
headLabel.setText("Cofiguracion del Canal de Comunicaci�n");
headLabel.setFont(SWTResourceManager.getFont("Tahoma", 8, 1, false, false));
GridData headLabelLayout = new GridData();
headLabelLayout.horizontalSpan=2;
headLabelLayout.horizontalAlignment=GridData.FILL;
headLabelLayout.grabExcessHorizontalSpace=true;
headLabel.setLayoutData(headLabelLayout);
frontCamPortLabel = new CLabel(customContainer,SWT.NONE);
frontCamPortLabel.setText("Puerto C�mara Frontal: ");
frontCamPortCombo = new CCombo(customContainer,SWT.NONE);
commLabel = new CLabel(customContainer,SWT.NONE);
commLabel.setText("Puerto: ");
commCombo = new CCombo(customContainer,SWT.NONE);
fillPortCombo();
speedLabel = new CLabel(customContainer,SWT.NONE);
speedLabel.setText("Velocidad: ");
speedCombo = new CCombo(customContainer,SWT.NONE);
speedCombo.add("9600");
speedCombo.add("19200");
speedCombo.add("38400");
speedCombo.add("57600");
speedCombo.select(2);
dataBitsLabel = new CLabel(customContainer,SWT.NONE);
dataBitsLabel.setText("Bits de Datos");
dataBitsCombo = new CCombo(customContainer,SWT.NONE);
dataBitsCombo.add("5 bits");
dataBitsCombo.add("6 bits");
dataBitsCombo.add("7 bits");
dataBitsCombo.add("8 bits");
dataBitsCombo.select(3);
parityLabel = new CLabel(customContainer,SWT.NONE);
parityLabel.setText("Paridad");
parityCombo = new CCombo(customContainer,SWT.NONE);
parityCombo.add("Ninguno");
parityCombo.add("Par");
parityCombo.add("Impar");
parityCombo.add("Marca");
parityCombo.add("Espacio");
parityCombo.select(0);
stopBitLabel = new CLabel(customContainer,SWT.NONE);
stopBitLabel.setText("Bit de Stop");
stopBitCombo = new CCombo(customContainer,SWT.NONE);
stopBitCombo.add("1");
stopBitCombo.add("1.5");
stopBitCombo.add("2");