list.add("Excel (*.xlsx)");
this.setSize(640, 200);
this.setTitle("Convert Other Format File to Encog Binary Training");
addProperty(this.externalFile = new FileField("source file","Source File",true,false,EncogDocumentFrame.CSV_FILTER));
addProperty(this.binaryFile = new FileField("target file","Target Encog Binary File(*.egb)",true,true,EncogDocumentFrame.ENCOG_BINARY));
addProperty(this.fileType = new ComboBoxField("type type", "Export File Type",true,list));
addProperty(this.inputCount = new IntegerField("input count","Input Count",true,1,10000));
addProperty(this.idealCount = new IntegerField("ideal count","Ideal Count",true,0,10000));
addProperty(this.containsSignificance = new CheckField("contains significance column","Significance Column Present"));